可以使用页面跳转
Header("Location:./index.html");
或者设置默认首页就把index.html设置在index.php之前
如果用xshell
服务器是iis
找到web.config
<configuration></configuration>标签内添加
<defaultDocument> <files> <add value="index.html" /> </files> </defaultDocument> </system.webServer>
服务器是apache
安装后Apache的目录下,有一个conf目录,在这个目录里,有一个"httpd.conf"文件
找到 DirectoryIndex 这段.把它改成DirectoryIndexindex.Html 如果前面有#要去掉