Skip to content

Instantly share code, notes, and snippets.

@RoesWibowo
Created April 5, 2016 15:14
Show Gist options
  • Save RoesWibowo/39529464c90b0a3084eea298d8577b09 to your computer and use it in GitHub Desktop.
Save RoesWibowo/39529464c90b0a3084eea298d8577b09 to your computer and use it in GitHub Desktop.
Serve static files AngularJS 2
# BEGIN ServeStatic
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
# END ServeStatic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment