从网站权重的角度看,无疑 http://www.anystandards.com/iso 要比 http://www.anystandards.com/iso/index.html 权重高一点。
而dede5.3版里默认是 http://www.anystandards.com/iso/index.html 这样类型的连接。
那我们就手动更改一下,以达到 http://www.anystandards.com/iso 这个我们想要的目标。
演示看看: www.anystandards.com
5.3跟5.1的不一样,因为要修改的文件不一样。
找到文件/include/channelunit.func.php
找到下面这里:
function GetTypeUrl($typeid,$typedir,$isdefault,$defaultname,$ispart,$namerule2,$moresite=0,$siteurl=’’,$sitepath=’’)
{
$typedir = MfTypedir($typedir);
$sitepath = MfTypedir($sitepath);
if($isdefault==-1)
{
//动态
$reurl = $GLOBALS[’cfg_phpurl’]."/list.php?tid=".$typeid;
}
else if($ispart==2)
{
在if($isdefault==-1) 前面添加如下代码:
if($ispart>2){
return $typedir;
}
if($defaultname == ’index.html’){
$defaultname = ’’;
}
//获得指定类目的URL链接
//对于使用封面文件和单独页面的情况,强制使用默认页名称
修改好后保存即可。你可以先更新首页看看,如果达到效果了,就可以全部更新一下网站了。