用织梦cms做网站输入网站就自动跳转到index.html。 服务器已经将默认文档设置为index.html了。 首页返回状态码为 301,想打开域名后只显示域名而不在后面带上index.html,在网上找了下方法,分享给大家 如果你在服务器上已经设置了默认文档,依然显示index.html的话,可以用下面的方法解决: header(‘HTTP/1.1 301 Moved Permanently‘);header(‘Location:index.html‘); 把上面这两行换成: include(dirname(__FILE__).‘/index.html‘);exit(); |
原文地址:https://www.cnblogs.com/luchakeji/p/8413503.html
时间: 2024-11-04 19:06:17