Skip to content

Instantly share code, notes, and snippets.

@bengsiswantoh
Created January 9, 2019 01:53
Show Gist options
  • Save bengsiswantoh/2c546203392237dd13f430edbf2e1d3a to your computer and use it in GitHub Desktop.
Save bengsiswantoh/2c546203392237dd13f430edbf2e1d3a to your computer and use it in GitHub Desktop.
single page application .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment