為什麼要去掉導航鏈接裡的index.html?因為去掉鏈接裡的index.html要比後者權重高一點。
DEDECMS去掉導航鏈接裡的index.html有兩種方法:
1.修改模板內的對應標簽,從而去掉對應鏈接的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}
2.修改程序文件,一次性替換所有欄目鏈接的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
修改完成後,然後重新生成即可.
*