Skip to content

Instantly share code, notes, and snippets.

@jibone
Created October 5, 2012 04:14
Show Gist options
  • Save jibone/3838040 to your computer and use it in GitHub Desktop.
Save jibone/3838040 to your computer and use it in GitHub Desktop.
My typical .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^css/(.*) public/css/$1 [L]
RewriteRule ^js/(.*) public/js/$1 [L]
RewriteRule ^img/(.*) public/img/$1 [L]
RewriteRule ^font/(.*) public/font/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ bootstrap.php [QSA,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment