Skip to content

Instantly share code, notes, and snippets.

@jgatjens
Created May 3, 2017 07:38
Show Gist options
  • Save jgatjens/a63aa01b55eacbc27867c1207bebc4a8 to your computer and use it in GitHub Desktop.
Save jgatjens/a63aa01b55eacbc27867c1207bebc4a8 to your computer and use it in GitHub Desktop.
Apache config for SPA's
# To be inside the /webroot
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment