織夢系統(tǒng)DedeCms v5.7設(shè)置全站偽靜態(tài)的教程
時間: 2018-11-20 09:33
閱讀: 次
作者:素材無憂網(wǎng)
織夢DedeCms全站偽靜態(tài),是為了更方便管理和SEO,織夢DedeCms默認(rèn)是生成靜態(tài)html文件的,對于優(yōu)化已經(jīng)非常友好,但還是有部分頁面是動態(tài)形式的(比如:Tag標(biāo)簽頁面、網(wǎng)站內(nèi)容搜索頁面、DedeCms問答頁面等),為了是這些頁面更好的被搜索引擎收錄,就需要進(jìn)行偽靜態(tài)了,雖然織夢DedeCms系統(tǒng)可以生成靜態(tài)html文件,但如果每天更新內(nèi)容量特別大的話,對于生成html文件也成為系統(tǒng)和人力的一個負(fù)擔(dān),那么也可以做成偽靜態(tài)形式,這樣就免去了不斷繁瑣的生成html文件了。
織夢DedeCms v5.7如何設(shè)置全站偽靜態(tài)
將DedeCms全站靜態(tài)化,這就需要mod_rewrite偽靜態(tài)模塊的支持。只要站長對.htaccess正則表達(dá)式精通,就可以把dede整站靜態(tài)化,更符合搜索引擎,而且還可以避免重復(fù)URL來。DedeCms全站偽靜態(tài)配置有些麻煩,主要是需要我們手動修改源代碼。整理步驟如下:
1、首先開啟站點(diǎn)偽靜態(tài)功能。登錄dede管理員后臺->系統(tǒng)->系統(tǒng)基本參數(shù)->核心設(shè)置->是否使用偽靜態(tài) 請選擇"是"。
2、修改源程序,實(shí)現(xiàn)首頁偽靜態(tài)、頻道頁偽靜態(tài)、列表頁偽靜態(tài)、文章頁偽靜態(tài),這是過程比較復(fù)雜,不如其它php開源程序操作簡單。
3、制作編寫.htaccess和.htaccess文件規(guī)則,上傳到DedeCms的安裝目錄。
織夢DedeCms全站偽靜態(tài)教程:含列表|文章|問答|搜索|TAG偽靜態(tài)規(guī)則:
1、網(wǎng)站服務(wù)器和網(wǎng)站空間是否支持偽靜態(tài):
這點(diǎn)特別重要,要么所以設(shè)置都不起作用。如果你的網(wǎng)站使用的是服務(wù)器,那么就可以自己動手設(shè)置一下,如果是空間的話,可以詢問下IDC服務(wù)商客服,看是否支持偽靜態(tài)(一般空間都是支持偽靜態(tài)的)。Apache服務(wù)器偽靜態(tài)相對簡單,直接在.htaccess文件中加入相應(yīng)偽靜態(tài)規(guī)則即可;而IIS服務(wù)器偽靜態(tài)的實(shí)現(xiàn),則需要加載Rewrite組件,然后配置httpd.ini文件。
2、開啟DedeCMS偽靜態(tài):
1)織夢DedeCms后臺-系統(tǒng)參數(shù)-核心設(shè)置-是否使用偽靜態(tài):選擇"是";
2)如果你啟用了織夢DedeCms問答模塊,則在后臺-系統(tǒng)參數(shù)-模塊設(shè)置-是否使用Rewrite:選擇"是";
3)創(chuàng)建欄目或批量增加欄目時,欄目列表選項(xiàng):選擇"使用動態(tài)頁"; 添加新文章時,發(fā)布選項(xiàng):選擇"僅動態(tài)瀏覽 "。同樣你也可以更改他們的模板,讓他們默認(rèn)就是這兩個值,一勞永逸。修改方法很簡單,方法如下:
找到后臺文件:/dede/templets/catalog_add.htm 修改添加欄目時默認(rèn)"使用動態(tài)頁"
<td height="26" >欄目列表選項(xiàng):</td>
<td><input type='radio' name='isdefault' value='1' class='np' checked="checked" />鏈接到默認(rèn)頁
<input type='radio' name='isdefault' value='0' class='np' />鏈接到列表第一頁
<input type='radio' name='isdefault' value='-1' class='np' />使用動態(tài)頁</td>
改為下面代碼
<td height="26" >欄目列表選項(xiàng):</td>
<td><input type='radio' name='isdefault' value='1' class='np' />鏈接到默認(rèn)頁
<input type='radio' name='isdefault' value='0' class='np' />鏈接到列表第一頁
<input type='radio' name='isdefault' value='-1' checked="checked" class='np' />使用動態(tài)頁</td>
找到后臺文件:/dede/templets/article_add.htm 修改添加文章時默認(rèn)"僅動態(tài)瀏覽"
<td width="90">發(fā)布選項(xiàng):</td>
<td width="379"><input name="ishtml" type="radio" class="np" value="1" checked="1" />生成HTML
<input type="radio" name="ishtml" class="np" value="0"/>僅動態(tài)瀏覽 </td>
改為下面代碼
<td width="90">發(fā)布選項(xiàng):</td>
<td width="379"><input name="ishtml" type="radio" class="np" value="1" />生成HTML
<input type="radio" name="ishtml" class="np" value="0" checked="1"/>僅動態(tài)瀏覽 </td>
4)如果網(wǎng)站已經(jīng)存在生成的靜態(tài)欄目或文章HTML,那么只需在后臺-系統(tǒng)-SQL命令行工具 中執(zhí)行如下語句:
update dede_arctype set isdefault=-1;
update dede_archives set ismake=-1;
注:命令中dede是網(wǎng)站安裝時的數(shù)據(jù)表前綴,根據(jù)實(shí)際情況進(jìn)行替換。
3、開啟DedeCms偽靜態(tài)支持并不能完全在后臺配置,有很多地方還是需要手動修改的。下面講解DedeCms全站偽靜態(tài)的實(shí)現(xiàn)方法,適用于V5.3以上版本。這次的DedeCms偽靜態(tài)測試環(huán)境是Windows IIS6,對于Linux或其它服務(wù)器的偽靜態(tài)實(shí)現(xiàn)原理都是一樣的,只要搞清楚思路就行。
1)DedeCms首頁偽靜態(tài):
把站點(diǎn)根目錄下index.html刪除,以后不更新主頁HTML就可以了,當(dāng)然你也可以選擇不使用動態(tài)首頁。
2)DedeCms頻道|列表頁|文章頁偽靜態(tài):
主要通過修改GetFileName()、GetTypeUrl()這兩個函數(shù)實(shí)現(xiàn)。DedeCms V5.3、DedeCms V5.5和DedeCms V5.6版本,打開/include/channelunit.func.php進(jìn)行修改。注意:DedeCms V5.7,此文件路徑更改了,你打開/include/helpers/channelunit.helper.php即可。
A.將GetTypeUrl()中的如下代碼:
//動態(tài)
$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;
替換為
//動態(tài)
$reurl = "/category/list-".$typeid.".html";
這步必須修改,即讓你的頻道或是列表頁URL變更為/category/list-1.html形式。
B.將GetFileName()中的如下代碼:
//動態(tài)文章
if($cfg_rewrite == 'Y')
{
return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html';
}
替換為
//動態(tài)文章
if($cfg_rewrite == 'Y')
{
return "/archives/view-".$aid.'-1.html';
}
將文章頁默認(rèn)的/plus/view-1-1.html鏈接格式改為/archives/view-1-1.html,隨個人喜好,不改也行。
3)DedeCms列表分頁偽靜態(tài):
打開/include/arc.listview.class.php,找到獲取動態(tài)的分頁列表GetPageListDM()函數(shù)末尾處:
$plist = str_replace('.php?tid=', '-', $plist);
替換為
$plist = str_replace('plus', 'category', $plist);//將默認(rèn)的plus替換成category
$plist = str_replace('.php?tid=', '-', $plist);
將列表分頁默認(rèn)鏈接格式/plus/list-1-2-1.html修改為/category/list-1-2-1.html,這步也可以不作更改。
4)DedeCms文章分頁偽靜態(tài):
打開/include/arc.archives.class.php,找到獲取動態(tài)的分頁列表GetPagebreakDM()函數(shù)末尾片:
$PageList = str_replace(".php?aid=","-",$PageList);
替換為
$plist = str_replace('plus', 'archives', $plist);//將默認(rèn)的plus替換成archives
$PageList = str_replace(".php?aid=","-",$PageList);
這步不作修改也可以,只是個人喜好問題。
5)DedeCmsTAG標(biāo)簽偽靜態(tài):
DedeCms默認(rèn)的TAG標(biāo)簽URL,形如/tags.php?/dedecms5.7/,特別的難看。打開/include/taglib/tag.lib.php,找到lib_tag()函數(shù)下的:
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";
替換為
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword'])."/";
到這里,TAG標(biāo)簽URL中的".php?"號就去掉了。
6)DedeCms搜索偽靜態(tài):
DedeCms搜索URL靜態(tài)化比較麻煩,附帶參數(shù)多不說,參數(shù)也可能變化,像搜索結(jié)果分頁的URL就特麻煩,偽靜態(tài)規(guī)則匹配復(fù)雜。將搜索URL中"search.php?…"直接替換為"search.html?…",至于"?"號之后的參數(shù)以任意字符進(jìn)行匹配。
依次打開include文件夾下的channelunit.func.php、arc.searchview.class.php、arc.taglist.class.php以及/include/taglib/hotwords.lib.php,查找"search.php?"替換為"search.html?"即可。
7)DedeCms問答偽靜態(tài):
問答模塊的偽靜態(tài)實(shí)現(xiàn)比較簡單,只要后臺開啟偽靜態(tài)支持即可,至于個別頁面,如ask目錄下的browser.php、question.php以及include目錄下的common.inc.php、functions.inc.php都需要簡單修改才可以匹配偽靜態(tài)規(guī)則。注意一點(diǎn),DedeCms V5.7問答模塊整體升級了,之前的規(guī)則已經(jīng)不適用了。
4、DedeCms偽靜態(tài)規(guī)則:
依照上面的步驟修改完畢,接下來配置好httpd.ini文件和.htaccess文件偽靜態(tài)規(guī)則,則DedeCms全站偽靜態(tài)就完美實(shí)現(xiàn)。
1)IIS偽靜態(tài)
打開httpd.ini文件,加入如下規(guī)則:
#首頁偽靜態(tài)規(guī)則,如果不使用動態(tài)首頁,請勿必刪除這一行,否則打開首頁會出現(xiàn)死循環(huán)
RewriteRule ^(.*)/index.html $1/index.php [I]
#列表頁偽靜態(tài)規(guī)則
RewriteRule ^(.*)/category/list-([0-9]+).html $1/plus/list.php?tid=$2 [I]
RewriteRule ^(.*)/category/list-([0-9]+)-([0-9]+)-([0-9]+).html $1/plus/list.php?tid=$2&TotalResult=$3&PageNo=$4 [I]
#文章頁偽靜態(tài)規(guī)則
RewriteRule ^(.*)/archives/view-([0-9]+)-([0-9]+).html $1/plus/view.php?arcID=$2&pageno=$3 [I]
#搜索偽靜態(tài)規(guī)則
RewriteRule ^(.*)/search.html(?:(?.*))* $1/search.php?$2 [I]
#TAG標(biāo)簽偽靜態(tài)規(guī)則
RewriteRule ^(.*)/tags.html $1/tags.php [I]
RewriteRule ^(.*)/tags/(.*)(?:(?.*))* $1/tags.php?/$2 [I]
RewriteRule ^(.*)/tags/(.*)/(?:(?.*))* $1/tags.php?/$2/ [I]
RewriteRule ^(.*)/tags/(.*)/([0-9])(?:(?.*))* $1/tags.php?/$2/$3 [I]
RewriteRule ^(.*)/tags/(.*)/([0-9])/(?:(?.*))* $1/tags.php?/$2/$3/ [I]
#問答偽靜態(tài)規(guī)則,適用于DedeCmsV5.3-5.6版本,需要修改幾處程序
RewriteRule ^(.*)/post.html $1/post.php [I]
RewriteRule ^(.*)/type.html $1/type.php [I]
RewriteRule ^(.*)/question-([0-9]+).html $1/question.php?id=$2 [I]
RewriteRule ^(.*)/browser-1-([0-9]+).html $1/browser.php?tid=$2 [I]
RewriteRule ^(.*)/browser-2-([0-9]+).html $1/browser.php?tid2=$2 [I]
RewriteRule ^(.*)/browser-1-([0-9]+)-([0-9]+).html $1/browser.php?tid=$2&page=$3 [I]
RewriteRule ^(.*)/browser-2-([0-9]+)-([0-9]+).html $1/browser.php?tid2=$2&page=$3 [I]
RewriteRule ^(.*)/browser-([0-9]+).html $1/browser.php?lm=$2 [I]
RewriteRule ^(.*)/browser-1-([0-9]+)-([0-9]+).html $1/browser.php?tid=$2&lm=$3 [I]
RewriteRule ^(.*)/browser-2-([0-9]+)-([0-9]+).html $1/browser.php?tid2=$2&lm=$3 [I]
2)Apache偽靜態(tài):
打開.htaccess文件,加入如下規(guī)則:
#提供部分規(guī)則作參考
RewriteRule ^category/list-([0-9]+).html$ /plus/list.php?tid=$1
RewriteRule ^category/list-([0-9]+)-([0-9]+)-([0-9]+).html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3
RewriteRule ^archives/view-([0-9]+)-([0-9]+).html$ /plus/view.php?aid=$1&pageno=$2
RewriteRule ^index.html$ index.php
注:1.以上提供的DedeCms偽靜態(tài)修改以及規(guī)則都是按照個人的修改步驟來的,僅供參考,你可以根據(jù)站點(diǎn)的實(shí)際情況作相應(yīng)調(diào)整;2.偽靜態(tài)實(shí)現(xiàn)思路,即根據(jù)理想的URL結(jié)構(gòu)寫好偽靜態(tài)規(guī)則,然后對程序進(jìn)行相應(yīng)修改,并沒有你想象中的那么復(fù)雜;3.不會程序、不會正則都沒有關(guān)系,但是思路一定要清晰,還有就是禁得住"折騰",多研究,搞透了,對提升自己也有極大好處。
標(biāo)簽: