Created
December 7, 2017 01:42
-
-
Save vanessasoutoc/1c4627fd282d5fc6bff5fb6bb2ff78c8 to your computer and use it in GitHub Desktop.
Erros das rotas do Angular em produção
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
| #Erro de rota no Angular 4, após gerar versão de produção (Apache) | |
| #$ ng build --prod | |
| #Acrescentar na pasta dist/ um arquivo com nome de .htaccess com os dados abaixo! | |
| RewriteEngine on | |
| # Don't rewrite files or directories | |
| RewriteCond %{REQUEST_FILENAME} -f [OR] | |
| RewriteCond %{REQUEST_FILENAME} -d | |
| RewriteRule ^ - [L] | |
| # Rewrite everything else to index.html to allow html5 state links | |
| RewriteRule ^ index.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment