Skip to content

Instantly share code, notes, and snippets.

@csaba-farkas
Created November 22, 2018 20:34
Show Gist options
  • Save csaba-farkas/30cdaa57afcfe0ef02dd9c21529812b1 to your computer and use it in GitHub Desktop.
Save csaba-farkas/30cdaa57afcfe0ef02dd9c21529812b1 to your computer and use it in GitHub Desktop.
Apache .htaccess for Angular development
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment