Skip to content

Instantly share code, notes, and snippets.

@Sjoerd
Created May 29, 2020 15:33
Show Gist options
  • Save Sjoerd/bfa638c49ad051974e4b15d2dafcc827 to your computer and use it in GitHub Desktop.
Save Sjoerd/bfa638c49ad051974e4b15d2dafcc827 to your computer and use it in GitHub Desktop.
SPA fallback
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !frontend/
RewriteRule (.*) /frontend/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment