Last active
December 14, 2015 20:24
-
-
Save mmikhan/edee4f77688db1a0e1d0 to your computer and use it in GitHub Desktop.
Laravel 5.1 Installation on Shared Hosting
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
| # | |
| # Please, add this .htaccess file to your root directory. | |
| # If you've added all the Laravel files to your root directory then everything should be fine. | |
| # Else, you'll require to change the `public/` to your `foldername/public` where the public folder is located | |
| # | |
| <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