Skip to content

Instantly share code, notes, and snippets.

@haideralishah
Forked from davemackintosh/.htaccess
Created October 8, 2017 13:20
Show Gist options
  • Save haideralishah/625f6cd2e96b81b7e44ea49ab341a8b4 to your computer and use it in GitHub Desktop.
Save haideralishah/625f6cd2e96b81b7e44ea49ab341a8b4 to your computer and use it in GitHub Desktop.
Working .htaccess for Single Page Apps
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.html [QA,L]
</ifModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment