在索引上显示“my-choice.html”

时间:2012-08-03 08:29:35

标签: .htaccess indexing

当你转到“http://mysite.com”时,如果我想在URL中显示索引所显示的文件,我该怎么做?例如:

现在,“my-choice.html”没有显示出来。到目前为止,我的.htaccess中有这个:

DirectoryIndex my-site.html

2 个答案:

答案 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]