Created
August 4, 2014 19:15
-
-
Save sabid/16d4d238cee7459c03fe to your computer and use it in GitHub Desktop.
Laravel Remove public folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteRule ^(.*)$ public/$1 [L] | |
</IfModule> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Referencias | |
http://creolab.hr/2013/03/removing-the-public-segment-in-a-laravel-4-app/ | |
https://coderwall.com/p/erbaig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment