Skip to content

Instantly share code, notes, and snippets.

@IntCastillo
Forked from davemackintosh/.htaccess
Created March 11, 2019 20:45
Show Gist options
  • Save IntCastillo/5884cedf9fad59191d79004d6b22498a to your computer and use it in GitHub Desktop.
Save IntCastillo/5884cedf9fad59191d79004d6b22498a 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