当你转到“http://mysite.com”时,如果我想在URL中显示索引所显示的文件,我该怎么做?例如:
现在,“my-choice.html”没有显示出来。到目前为止,我的.htaccess中有这个:
DirectoryIndex my-site.html
答案 0 :(得分:0)
DirectoryIndex
指令仅设置在请求用于目录时尝试解析的文件列表。它不会像你想要的那样重定向浏览器。试试这个:
RedirectMatch 301 ^/$ /my-choice.html
答案 1 :(得分:0)
这是你可爱的htaccess:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?$ /my-choice.html [L,R=301]