Skip to content

Instantly share code, notes, and snippets.

View faustogerman's full-sized avatar
🧶
Creating something awesome

Fausto German faustogerman

🧶
Creating something awesome
View GitHub Profile
@santthosh
santthosh / apache rewrite rule
Created November 14, 2014 08:38
Apache config for SPA's
# To be inside the /Directory
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>