如何修改才能實現dede織夢TAG標簽的靜態化呢?下面阿澤就來分享一下,希望可以幫到在這裡遇到困難的伙伴們!
開源的織夢程序可以說是簡單易操作,是大多數站長、SEOer們的首選程序之一。用過織夢程序的朋友都知道,織夢默認的Tag不是靜態的,織夢tag標簽URLTag標簽URL裡含有“tags.php?/%BE%AD%D1%E9%B7%D6%CF%ED/”,很長而且網址也很難看,長難看不說,關鍵是像這類URL俗稱動態的URL;做網站/seo優化的朋友我想大家都知道這是不利於搜索引擎的。
那麼,我們就要把它優化變成靜態的。如何修改才能實現dede織夢TAG標簽的靜態化呢?下面阿澤就網絡搜索的一些知識並結合自己實踐操作的來分享一下,希望可以幫到在這裡遇到困難的伙伴們!
但是,阿澤建議大家,在使用前,請先備份相關的原始文件。
具體修改步驟如下:
1、在DEDE網站根目錄,建立“tag”目錄(小寫);
2、在DEDE後台SQL運行器裡,執行以下一條SQL:
ALTER TABLE `dede_tagindex` ADD `maketime` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0';
3、增加文件:
templets/default/list_tag.htm //可從文章列表頁復制修改
templets/default/index_tag.htm //可從tag.htm復制
dede/makehtml_tag_action_list.php
dede/makehtml_tag_action_index.php
dede/makehtml_tag.php
dede/templets/makehtml_tag.htm
include/arc.taghtml.class.php
4、修改文件:
dede/inc/inc_menu.php
142行,插入 <m:item name='更新TAG靜態' link='makehtml_tag.php' rank='sys_MakeHtml' target='main' />
include/taglib/tag.lib.php 61行屏蔽,62行插入 (參考附帶的文件,也可以直接覆蓋)
include/extend.func.php 把裡面的代碼,都復制到你的extend.func.php文件裡
使用說明:
1、進入後台“生成”,即可看到左邊的“更新TAG靜態”(就在更新主頁、欄目、文檔等功能的下方)
2、自行編輯TAG列表頁模板list_tag.htm、TAG首頁模板index_tag.htm,都放在你站點模板所在目錄即可(和首頁模板、列表頁模板、內容
頁模板等在一起)
3、生成有個選項“是否強制全部生成”,它是為了節約資源設計的;
如果是“重新生成全部TAG列表”,它會更新所有的TAG的列表頁;
如果是“僅更新上次生成後有變化的TAG”,它則會只更新上次更新之後有變化及新增加的TAG的列表頁,這個比較節約時間
4、生成的TAG首頁,放在根目錄,叫做tags.html
5、如果你的模板裡,還有TAG需要指向到它的靜態地址,則用參考這個函數去處理其標簽即可:
{dede:tag type='current'}
[field:id function="nic_tag_url(@me)" /]
{/dede:tag}
其中的id就是這個TAG的ID號
6、在內容頁模板,如果想指向該文TAG的列表頁,用以下標簽即可:
{dede:field.id function='nic_arc_tag_link(@me)'/}
使用後的效果:
高級補充說明:
1、TAG這個目錄可以改,修改arc.taghtml.class.php的146行和extend.func.php的15行,裡面的tag/字樣
2、文件名裡的id號不能去掉,舉例說因為“作業”和“昨夜”的拼音都一樣,如果沒有ID,他們的文件名就重復了。
3、生成速度和普通列表頁一致的,因為是從哪裡修改過來的。你有1萬個TAG,假定你每個TAG對應有30個文章吧,列表頁10篇為一頁,那就有3萬篇了。
你可以到後台的sql運行工具裡,執行這一句看看,就知道TAG對應文章之後,數量就遠大於TAG數量本身:
select count(*) as c from dede_taglist
4、如果需要在發布新文章的時候,同時更新相關的TAG列表頁,可以參考附帶的inc_archives_functions.php,修改你DEDE後台目錄
dede/inc/inc_archives_functions.php,查找以下代碼:
function GetUpdateTest()
{
global $arcID, $typeid, $cfg_make_andcat, $cfg_makeindex, $cfg_make_prenext;
$revalue = $dolist = '';
if($cfg_makeindex=='Y' || $cfg_make_andcat=='Y' || $cfg_make_prenext=='Y')
{
if($cfg_make_prenext=='Y' && !empty($typeid)) $dolist = 'makeprenext';
if($cfg_makeindex=='Y') $dolist .= empty($dolist) ? 'makeindex' : ',makeindex';
if($cfg_make_andcat=='Y') $dolist .= empty($dolist) ? 'makeparenttype' : ',makeparenttype';
$dolists = explode(',', $dolist);
$jumpUrl = "task_do.php?typeid={$typeid}&aid={$arcID}&dopost={$dolists[0]}&nextdo=".preg_replace("#".$dolists[0]."[,]{0,1}#", '', $dolist);
$revalue = "<table width='80%' style='border:1px dashed #cdcdcd;margin-left:20px;margin-bottom:15px' id='tgtable' align='left'><tr><td bgcolor='#EBF5C9'> <strong>正在進行相關內容更新,請完成前不要進行其它操作:</strong>\r\n</td></tr>\r\n";
$revalue .= "<tr><td>\r\n<iframe name='stafrm' frameborder='0' id='stafrm' width='100%' height='200px' src='$jumpUrl'></iframe>\r\n</td></tr>\r\n";
$revalue .= "</table>";
}
else
{
$revalue = '';
}
return $revalue;
}
然後將這一段代碼替換為:
function GetUpdateTest()
{
global $arcID, $typeid, $cfg_make_andcat, $cfg_makeindex, $cfg_make_prenext;
global $dsql; //add by nic
$revalue = $dolist = '';
if($cfg_makeindex=='Y' || $cfg_make_andcat=='Y' || $cfg_make_prenext=='Y')
{
if($cfg_make_prenext=='Y' && !empty($typeid)) $dolist = 'makeprenext';
if($cfg_makeindex=='Y') $dolist .= empty($dolist) ? 'makeindex' : ',makeindex';
if($cfg_make_andcat=='Y') $dolist .= empty($dolist) ? 'makeparenttype' : ',makeparenttype';
$dolists = explode(',', $dolist);
$jumpUrl = "task_do.php?typeid={$typeid}&aid={$arcID}&dopost={$dolists[0]}&nextdo=".ereg_replace($dolists[0]."[,]{0,1}", '', $dolist);
$revalue = "<table width='80%' style='border:1px dashed #cdcdcd;margin-left:20px;margin-bottom:15px' id='tgtable' align='left'><tr><td bgcolor='#EBF5C9'> <strong>正在進行相關內容更新,請完成前不要進行其它操作:</strong>\r\n</td></tr>\r\n";
$revalue .= "<tr><td>\r\n<iframe name='stafrm' frameborder='0' id='stafrm' width='100%' height='200px' src='$jumpUrl'></iframe>\r\n</td></tr>\r\n";
$revalue .= "</table>";
}
else
{
$revalue = '';
}
//add by nic
$sql="select tid from dede_taglist where aid=".$arcID;
$dsql->Execute('al',$sql);
while($row=$dsql->GetObject('al')){
$revalue .= "\r\n<iframe name='stafrm' frameborder='0' id='stafrm' width='100%' height='40px' src='makehtml_tag_action_list.php?typeid=".$row->tid."'></iframe><br>";
}
$revalue .= "\r\n<iframe name='stafrm' frameborder='0' id='stafrm' width='100%' height='100px' src='makehtml_tag_action_index.php'></iframe><br>";
//add by nic
return $revalue;
}
替換完成之後,在生成文件的同時,也會自動生成Tag標簽,效果如圖: