Skip to content

Instantly share code, notes, and snippets.

@gitllermopalafox
Created December 21, 2015 18:19
Show Gist options
  • Select an option

  • Save gitllermopalafox/8002fa3c8f213c27d3f4 to your computer and use it in GitHub Desktop.

Select an option

Save gitllermopalafox/8002fa3c8f213c27d3f4 to your computer and use it in GitHub Desktop.
Laravel htaccess for shared hostings
# 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