Skip to content

Instantly share code, notes, and snippets.

@topwebmaster
Created September 24, 2014 13:22
Show Gist options
  • Save topwebmaster/5a65d85066946c9c0948 to your computer and use it in GitHub Desktop.
Save topwebmaster/5a65d85066946c9c0948 to your computer and use it in GitHub Desktop.
.htaccess tips and tricks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment