Skip to content

Instantly share code, notes, and snippets.

@sk22
Created March 10, 2026 11:28
Show Gist options
  • Select an option

  • Save sk22/6f7024191b0e206658d0b79bde3a6c99 to your computer and use it in GitHub Desktop.

Select an option

Save sk22/6f7024191b0e206658d0b79bde3a6c99 to your computer and use it in GitHub Desktop.
.htaccess for single page apps: if file does not exist, rewrite to index.html
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment