我创建了一个.htaccess文件,只在root文件夹中将默认的index.html页面设置为homepage.php。
我已经通过添加DirectoryIndex homepage.php index.html进行了检查,但这也适用于所有文件夹索引页。
任何人都知道要对此进行排序吗?
答案 0 :(得分:0)
而不是DirectoryIndex
在您的网站根目录中使用mod_rewrite
规则.htaccess:
RewriteEngine On
RewriteRule ^(index\.html)?$ homepage.php [L,NX]
这会为您网站的目标网页加载homepage.php
。