Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteBase /application/public/

	# we check if the .html version is here (caching)
	RewriteRule ^$ index.html [QSA]
	RewriteRule ^([^.]+)$ $1.html [QSA]
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	# no, so we redirect to our front web controller
	RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
