10 lines
248 B
ApacheConf
10 lines
248 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
|
|
# Serve existing files directly
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
# Redirect everything to index.html
|
|
RewriteRule ^ index.html [L]
|
|
</IfModule> |