#----- Apache options -----Allow from AllRequire all granted
OptionsFollowSymLinksOptions-Indexes-MultiviewsDirectoryIndex index.php
#---------------------------<IfModule mod_rewrite.c>RewriteEngineOnRewriteBase/crinoline/example
#----- Hide everything but index -----RewriteCond%{REQUEST_FILENAME}!index.php
RewriteRule(.*)/.php$ index.php/$1
#-----------------------------------------#----- Forward every 404 to index -----RewriteCond%{REQUEST_FILENAME}!-f
RewriteCond%{REQUEST_FILENAME}!-d
RewriteRule^(.*)$ index.php?_r=/$1 [NC,L,QSA]#------------------------------------------</IfModule><IfModule!mod_rewrite.c>ErrorDocument404/crinoline/example/index.php
</IfModule>