Created
December 21, 2015 18:19
-
-
Save gitllermopalafox/8002fa3c8f213c27d3f4 to your computer and use it in GitHub Desktop.
Laravel htaccess for shared hostings
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
| # Add to the root of your Laravel5+ project | |
| # Based on ricksonchew's answer | |
| # http://laravel.io/forum/03-06-2015-how-to-setup-laravel-5-in-shared-hosting | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine on | |
| RewriteCond %{REQUEST_URI} !^public | |
| RewriteRule ^(.*)$ public/$1 [L] | |
| </IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment