Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created November 7, 2017 00:33
Show Gist options
  • Save RhythmShahriar/188d63bc4c34afe5830fc876b5a4663c to your computer and use it in GitHub Desktop.
Save RhythmShahriar/188d63bc4c34afe5830fc876b5a4663c to your computer and use it in GitHub Desktop.
Permanently redirect all request from root to /public folder (Laravel)
RewriteEngine on
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment