Skip to content

Instantly share code, notes, and snippets.

@mmikhan
Last active December 14, 2015 20:24
Show Gist options
  • Save mmikhan/edee4f77688db1a0e1d0 to your computer and use it in GitHub Desktop.
Save mmikhan/edee4f77688db1a0e1d0 to your computer and use it in GitHub Desktop.
Laravel 5.1 Installation on Shared Hosting
#
# 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