将默认页面从index.php更改为index.html

时间:2016-10-25 01:43:04

标签: php html .htaccess

简单的问题。我想将网站的默认网页从index.php更改为index.html。我不知道我的服务器(000webhost.com,虽然网站正在开发中)使用Apache,但我更改了.htaccess文件,并添加了DirectoryIndex index.html index.php。但是仍然无法正常工作。

网站加载时,会加载randomwebsitename12345.com。如果我将/index.html添加到字符串,那么页面加载正常,应该如此。如果我从服务器中删除.php文件,那么网站会加载index.html。

有什么想法吗?

2 个答案:

答案 0 :(得分:0)

为什么不从index.php文件中删除.htaccess

答案 1 :(得分:0)

您可以使用以下重写规则将 index.html 设置为主页:

在你的htaccess中的其他规则之前添加:

RewriteEngine on


RewriteRule ^$ /index.html [L]