Skip to content

Instantly share code, notes, and snippets.

@davemackintosh
davemackintosh / .htaccess
Last active September 6, 2024 18:36
Working .htaccess for Single Page Apps
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.html [QSA,L]
</ifModule>