在織夢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
新聞熱點
疑難解答