Skip to content

Instantly share code, notes, and snippets.

View regenrek's full-sized avatar

Kevin Kern regenrek

View GitHub Profile
#php_flag display_startup_errors on
#php_flag display_errors on
#php_flag html_errors on
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
location ~ .(scripts|styles|images|views)/(.*)/(.*)$ {
try_files $uri $uri/ /../frontend/app/$1/$2/$3;
}
location ~ .(scripts|styles|images|views)/(.*)$ {
try_files $uri $uri/ /../frontend/app/$1/$2;
}
location ~ .(bower_components)/(.*)/(.*)$ {