18 lines
363 B
ApacheConf
18 lines
363 B
ApacheConf
|
|
#Alternate default index page
|
|
DirectoryIndex index.html
|
|
|
|
<IfModule mod_negotiation.c>
|
|
Options -MultiViews
|
|
</IfModule>
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteRule ^index\.html$ - [L]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule . /index.html [L]
|
|
RewriteCond %{HTTPS} off
|
|
</IfModule>
|