程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 兩種方法去掉dedeCMS去掉導航鏈接index.html

兩種方法去掉dedeCMS去掉導航鏈接index.html

編輯:PHP綜合
為什麼要去掉導航鏈接裡的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 修改完成後,然後重新生成即可. *
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved