Skip to content

Instantly share code, notes, and snippets.

@vanessasoutoc
Created December 7, 2017 01:42
Show Gist options
  • Select an option

  • Save vanessasoutoc/1c4627fd282d5fc6bff5fb6bb2ff78c8 to your computer and use it in GitHub Desktop.

Select an option

Save vanessasoutoc/1c4627fd282d5fc6bff5fb6bb2ff78c8 to your computer and use it in GitHub Desktop.
Erros das rotas do Angular em produção
#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