Created
March 20, 2019 13:05
-
-
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
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
<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