請(qǐng)確保你網(wǎng)站所在的主機(jī)或者服務(wù)器支持偽靜態(tài)并且已經(jīng)開(kāi)啟了偽靜態(tài)功能!
本教程主要設(shè)置織夢(mèng)偽靜態(tài)頁(yè)面包括有:
列表頁(yè) /plus/list-2.html
列表頁(yè)分頁(yè) /plus/list-2-26-2.html
內(nèi)容頁(yè) /plus/view-112-1.html
內(nèi)容頁(yè)分頁(yè) /plus/view-112-2.html
TAG標(biāo)簽頁(yè) /tags/織夢(mèng)/
TAG標(biāo)簽分頁(yè) /tags/織夢(mèng)/2/
搜索頁(yè) /search/織夢(mèng).html
搜索頁(yè)分頁(yè) /search/織夢(mèng)-2.html
網(wǎng)站后臺(tái)開(kāi)啟偽靜態(tài)選項(xiàng)
后臺(tái)-系統(tǒng)參數(shù)-核心設(shè)置-是否使用偽靜態(tài):"是"
網(wǎng)站后臺(tái)設(shè)置整站為動(dòng)態(tài)
這里可以借助我寫(xiě)的一個(gè)小插件來(lái)完成,一勞永逸
插件介紹及下載地址
1、列表頁(yè)和內(nèi)容頁(yè)偽靜態(tài)鏈接
打開(kāi) includehelperschannelunit.helper.php 找到
global $cfg_typedir_df;
改成
global $cfg_typedir_df, $cfg_rewrite;
繼續(xù)找到
$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;
改成
1 2 3 4 5 6 7 8 9 | if($cfg_rewrite == 'Y') { $reurl = $GLOBALS["cfg_phpurl"]."/list-".$typeid.'.html'; } else { //動(dòng)態(tài) $reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid; } |
2、手機(jī)版列表頁(yè)分頁(yè)不使用電腦版?zhèn)戊o態(tài)
打開(kāi) includerc.listview.class.php 找到
if($cfg_rewrite == 'Y')
大概在1198行,把這一行改成
if($cfg_rewrite == 'Y' && !defined('DEDEMOB'))
3、TAG標(biāo)簽偽靜態(tài)鏈接
打開(kāi) include aglib ag.lib.php 找到
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";
改成
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword'])."/";
4、TAG標(biāo)簽分頁(yè)偽靜態(tài)鏈接
打開(kāi) includerc.taglist.class.php 找到
$this->PageNo = $GLOBALS['PageNo'];
在它的下面加入
if($this->PageNo == 0)
{
$this->PageNo = 1;
}
繼續(xù)找到
$prepage="";
在它的上面加入
global $cfg_rewrite;
繼續(xù)找到
$purl .= "?/".urlencode($this->Tag);
改成
1 2 3 4 5 6 7 8 | if($cfg_rewrite == 'Y') { $purl = "/tags/".urlencode($this->Tag); } else { $purl .= "?/".urlencode($this->Tag); } |
4、搜索頁(yè)偽靜態(tài)鏈接
打開(kāi) plussearch.php 找到
$t1 = ExecTime();
在它的下面加入
$keyword = preg_replace("/-(d+)/i",'',$keyword);
$oldkeyword = preg_replace("/-(d+)/i",'',$oldkeyword);
打開(kāi) includerc.searchview.class.php 找到
global $oldkeyword;
改成
global $oldkeyword, $cfg_rewrite;
繼續(xù)找到
$purl .= "?".$geturl;
改成
if($cfg_rewrite != 'Y' && !defined('DEDEMOB'))
{
$purl .= "?".$geturl;
}
else
{
$purl = '/search/'.urlencode($oldkeyword);
}
繼續(xù)找到
return $plist;
在它的上面加入
if($cfg_rewrite == 'Y' && !defined('DEDEMOB'))
{
$plist = preg_replace("/PageNo=(d+)/i",'-\1.html',$plist);
}
最后還需要在你模板里搜索框代碼改成靜態(tài)的js提交搜索,參考下面代碼,注意標(biāo)紅的地方
<script type="text/javascript">
function search()
{
var q = document.getElementById("q").value;
window.location.href = "http://www.dedecms51.com/search/"+q+".html";
}
function enterIn(obj,evt)
{
var evt = evt ? evt : (window.event ? window.event : null);
if (evt.keyCode == 13)
{
var q = obj.value;
window.location.href = "http://www.dedecms51.com/search/"+q+".html";
}
}
</script>
<form action="" method="post" onsubmit="return false">
<div>
<h4>搜索</h4>
<input name="q" id="q" onkeydown="enterIn(this,event);" type="text" />
<button type="submit" onclick="search()">搜索</button>
</div>
</form>
偽靜態(tài)規(guī)則文件打包下載
云盤(pán)下載 密碼: vf18
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #列表頁(yè)和列表分頁(yè) RewriteRule ^(.*)/plus/list-([0-9]+).html $1/plus/list.php?tid=$2 RewriteRule ^(.*)/plus/list-([0-9]+)-([0-9]+)-([0-9]+).html $1/plus/list.php?tid=$2&TotalResult=$3&PageNo=$4 #內(nèi)容頁(yè)和內(nèi)容分頁(yè) RewriteRule ^(.*)/plus/view-([0-9]+)-([0-9]+).html $1/plus/view.php?arcID=$2&pageno=$3 #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] #搜索頁(yè) RewriteRule ^(.*)/search/(.*)-([0-9]+).html $1/plus/search.php?q=$2&PageNo=$3&pagesize=2&searchtype=title RewriteRule ^(.*)/search/(.*).html $1/plus/search.php?q=$2&pagesize=2&searchtype=title |
iis7、8偽靜態(tài)規(guī)則 web.config
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="首頁(yè)"> <match url="^index.html$" ignoreCase="false" /> <action type="Rewrite" url="index.php" appendQueryString="false" /> </rule> <rule name="列表"> <match url="^plus/list-([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="/plus/list.php?tid={R:1}" appendQueryString="false" /> </rule> <rule name="列表分頁(yè)"> <match url="^plus/list-([0-9]+)-([0-9]+)-([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="/plus/list.php?tid={R:1}&totalresult={R:2}&PageNo={R:3}" appendQueryString="false" /> </rule> <rule name="文章分頁(yè)"> <match url="^plus/view-([0-9]+)-([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="/plus/view.php?aid={R:1}&pageno={R:2}" appendQueryString="false" /> </rule> <rule name="tag首頁(yè)"> <match url="^tags.html$" ignoreCase="false" /> <action type="Rewrite" url="tags.php" appendQueryString="false" /> </rule> <rule name="tag列表"> <match url="^tags/(.*)(?:(?.*))*$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}" appendQueryString="false" /> </rule> <rule name="tag列表最后有左斜杠"> <match url="^tags/(.*)/(?:(?.*))*$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/" appendQueryString="false" /> </rule> <rule name="tag列表分頁(yè)"> <match url="^tags/(.*)/([0-9])(?:(?.*))*$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/{R:2}" appendQueryString="false" /> </rule> <rule name="tag列表分頁(yè)最后有左斜杠"> <match url="^tags/(.*)/([0-9])/(?:(?.*))*$" ignoreCase="false" /> <action type="Rewrite" url="/tags.php?/{R:1}/{R:2}/" appendQueryString="false" /> </rule> <rule name="搜索頁(yè)分頁(yè)"> <match url="^search/(.*)-([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="/plus/search.php?q={R:1}&PageNo={R:2}&pagesize=2&searchtype=title" appendQueryString="false" /> </rule> <rule name="搜索頁(yè)"> <match url="^search/(.*).html$" ignoreCase="false" /> <action type="Rewrite" url="/plus/search.php?q={R:1}&pagesize=2&searchtype=title" appendQueryString="false" /> </rule> </rules> </rewrite> </system.webServer> </configuration> |
apache偽靜態(tài)規(guī)則 .htaccess
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #列表頁(yè)和列表分頁(yè) RewriteRule ^plus/list-([0-9]+).html$ plus/list.php?tid=$1 RewriteRule ^plus/list-([0-9]+)-([0-9]+)-([0-9]+).html$ plus/list.php?tid=$1&TotalResult=$2&PageNo=$3 #內(nèi)容頁(yè)和內(nèi)容分頁(yè) RewriteRule ^plus/view-([0-9]+)-([0-9]+).html$ plus/view.php?arcID=$1&pageno=$2 #TAG標(biāo)簽 RewriteRule ^tags.html$ tags.php RewriteRule ^tags/(.*)(?:(?.*))* tags.php?/$1 RewriteRule ^tags/(.*)/(?:(?.*))* tags.php?/$1/ RewriteRule ^tags/(.*)/([0-9])(?:(?.*))* tags.php?/$1/$2 RewriteRule ^tags/(.*)/([0-9])/(?:(?.*))* tags.php?/$1/$2/ #搜索頁(yè) RewriteRule ^search/(.*)-([0-9]+).html$ plus/search.php?q=$1&PageNo=$2&pagesize=2&searchtype=title RewriteRule ^search/(.*).html$ plus/search.php?q=$1&pagesize=2&searchtype=title nginx偽靜態(tài)規(guī)則 rewrite ^/plus/list-([0-9]+).html$ /plus/list.php?tid=$1; rewrite ^/plus/list-([0-9]+)-([0-9]+)-([0-9]+).html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3; rewrite ^/plus/view-([0-9]+)-1.html$ /plus/view.php?arcID=$1; rewrite ^/plus/view-([0-9]+)-([0-9]+).html$ /plus/view.php?aid=$1&pageno=$2; rewrite ^/tags.html$ /tags.php; rewrite ^/tags/(.*)(?:(?.*))* /tags.php?/$1; rewrite ^/tags/(.*)/(?:(?.*))* /tags.php?/$1/; rewrite ^/tags/(.*)/([0-9])(?:(?.*))* /tags.php?/$1/$2; rewrite ^/tags/(.*)/([0-9])/(?:(?.*))* /tags.php?/$1/$2/; rewrite ^/search/(.*)-([0-9]+).html$ /plus/search.php?q=$1&PageNo=$2&pagesize=2&searchtype=title; rewrite ^/search/(.*).html$ /plus/search.php?q=$1&pagesize=2&searchtype=title; |
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)全站偽靜態(tài)設(shè)置+全套偽靜態(tài)規(guī)則精華教程