Skip to content

Instantly share code, notes, and snippets.

@meSingh
Created June 20, 2013 11:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meSingh/5822085 to your computer and use it in GitHub Desktop.
Save meSingh/5822085 to your computer and use it in GitHub Desktop.
Laravel's (L3) .htaccess to remove "public" from URL
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment