main
text 8 lines 250 Bytes
Raw
1 <IfModule mod_rewrite.c>
2 RewriteEngine On
3 # Send all requests to the index.html unless
4 # it's a directory or a file that actually exists
5 RewriteCond %{REQUEST_FILENAME} !-d
6 RewriteCond %{REQUEST_FILENAME} !-f
7 RewriteRule ^ index.html [L]
8 </IfModule>