Skip to content

Instantly share code, notes, and snippets.

@freewayspb
Forked from renesansz/.htaccess
Created December 20, 2016 00:46
Show Gist options
  • Save freewayspb/45f414f0681659c85f31ebfb1a27abcd to your computer and use it in GitHub Desktop.
Save freewayspb/45f414f0681659c85f31ebfb1a27abcd to your computer and use it in GitHub Desktop.
.htaccess for Angular HTML5 Mode routing using Angular-UI
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(.*) /index.html [NC,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment