怎么去掉织梦网站首页带的index.html/index.php


方法1.

1)在空间面板里面找到默认首页设置:
如何去掉网址尾巴

我们是需要去掉index.html,这时我们只需要把index.html这个把它移到最顶级去就行,然后点击确定,在打开网站刷新下,就基本可以解决了!
其它的类似!!

方法2:

如果你在服务器上已经设置了默认文档,依然显示index.html的话,可以用下面的方法解决:
找到dede根目录下的index.php文件

header('HTTP/1.1 301 Moved Permanently');
header('Location:index.html');
把上面这两行换成:

include(dirname(__FILE__).'/index.html');
exit();

注:很多人觉得我都试了,还不成功,正常是你的网站没有生成更新,         或者浏览器没有清空缓存

原文地址:https://www.cnblogs.com/lxwphp/p/15455429.html