Skip to content

Instantly share code, notes, and snippets.

@regenrek
Created March 16, 2015 13:28
Show Gist options
  • Save regenrek/f5cbf6da2efbd6a4f067 to your computer and use it in GitHub Desktop.
Save regenrek/f5cbf6da2efbd6a4f067 to your computer and use it in GitHub Desktop.
#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
RewriteBase /
RewriteRule ^(styles|scripts|images|fonts)/(.*)?$ /dist/$1/$2 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !index
RewriteRule ^ index.php [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment