Skip to content

Instantly share code, notes, and snippets.

@diegofelix
Created April 17, 2013 13:42
Show Gist options
  • Save diegofelix/5404401 to your computer and use it in GitHub Desktop.
Save diegofelix/5404401 to your computer and use it in GitHub Desktop.
Laravel 3: .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
@diegofelix
Copy link
Author

redirect a request to /public folder.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment