Skip to content

Instantly share code, notes, and snippets.

@arthurcvm
Created March 20, 2019 13:05
Show Gist options
  • Save arthurcvm/a0c821dd28280f0b00d7c57baa1e1029 to your computer and use it in GitHub Desktop.
Save arthurcvm/a0c821dd28280f0b00d7c57baa1e1029 to your computer and use it in GitHub Desktop.
Arquivo para raiz de projeto Laravel para redirecionar requisições para pasta /public
<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