如何仅在根文件夹中通过.htaccess设置默认索引页面

时间:2018-02-15 10:32:49

标签: .htaccess mod-rewrite

我创建了一个.htaccess文件,只在root文件夹中将默认的index.html页面设置为homepage.php。

我已经通过添加DirectoryIndex homepage.php index.html进行了检查,但这也适用于所有文件夹索引页。

任何人都知道要对此进行排序吗?

1 个答案:

答案 0 :(得分:0)

而不是DirectoryIndex在您的网站根目录中使用mod_rewrite规则.htaccess:

RewriteEngine On

RewriteRule ^(index\.html)?$ homepage.php [L,NX]

这会为您网站的目标网页加载homepage.php