服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > dedecms教程 >

去掉织梦dede导航链接index.html的方法总结

时间:2016-02-06 13:53来源: 作者: 点击:
在织梦dede网站可以看出,输入www.zuimoban.com可以打开网站,但是输入www.zuimoban.com/index.html也可以打开网站,这样也会影响到网站的权重,所以在网站中可以使用两种方法去掉index.html。

在织梦dede网站可以看出,输入www.zuimoban.com可以打开网站,但是输入www.zuimoban.com/index.html也可以打开网站,这样也会影响到网站的权重,所以在网站中可以使用两种方法去掉index.html。

第一种方法:修改模板内的对应标签

在出现栏目链接的标签里(不局限于channe,l,list,arclist) ,只要是能调用出来栏目链接的标签都可以使用这个方法:
在标记内加入下面的代码
function='str_replace("index.htm","",@me)'
注意:'str_replace("index.htm","",@me)'/其中的index.htm看您的实际情况换成index.html或者index.htm。
例子:
{dede:arclist  function='str_replace("index.htm","",@me)'}...底层调用{/dede:arclist}
{dede:list  function='str_replace("index.htm","",@me)'}...底层调用{/dede:list}

第二种方法:修改程序文件,一次性替换所有栏目链接的index.html

打开需要修改的文件:include/channelunit.func.php
找到if($isdefault==-1)
在前面加入
//跳转网址
if($ispart>2){
return $typedir;
}
if($defaultname == 'index.html'){
$defaultname = '';
}
其中的index.html看您的实际情况换成index.html或者index.htm

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------