Skip to content

Instantly share code, notes, and snippets.

@prashantidealittechno
Created December 21, 2018 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prashantidealittechno/514ba754ff3883c7dd2edc828d48ad03 to your computer and use it in GitHub Desktop.
Save prashantidealittechno/514ba754ff3883c7dd2edc828d48ad03 to your computer and use it in GitHub Desktop.
htaccess file for angular 6
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 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment