請確保你網(wǎng)站所在的主機或者服務(wù)器支持偽靜態(tài)并且已經(jīng)開啟了偽靜態(tài)功能!
本教程主要設(shè)置織夢偽靜態(tài)頁面包括有:
1.列表頁 /plus/list-2.html
2.列表頁分頁 /plus/list-2-26-2.html
3.內(nèi)容頁 /plus/view-112-1.html
4.內(nèi)容頁分頁 /plus/view-112-2.html
5.TAG標(biāo)簽頁 /tags/織夢/
6.TAG標(biāo)簽分頁 /tags/織夢/2/
7.搜索頁 /search/織夢.html
8.搜索頁分頁 /search/織夢-2.html
網(wǎng)站后臺開啟偽靜態(tài)選項
網(wǎng)站后臺設(shè)置整站為動態(tài)
這里可以借助一個小插件來完成,一勞永逸
插件下載懶人包
網(wǎng)站文件修改
1、列表頁和內(nèi)容頁偽靜態(tài)鏈接
打開 \include\helpers\channelunit.helper.php 找到
-
global $cfg_typedir_df;
改成
-
global $cfg_typedir_df, $cfg_rewrite;
繼續(xù)找到
-
$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;
改成
-
if($cfg_rewrite == 'Y')
-
{
-
$reurl = $GLOBALS["cfg_phpurl"]."/list-".$typeid.'.html';
-
}
-
else
-
{
-
//動態(tài)
-
$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;
-
}
2、手機版列表頁分頁不使用電腦版?zhèn)戊o態(tài)
打開
\include\arc.listview.class.php 找到
-
if($cfg_rewrite == 'Y')
大概在1198行,把這一行改成
-
if($cfg_rewrite == 'Y' && !defined('DEDEMOB'))
3、TAG標(biāo)簽偽靜態(tài)鏈接
打開
\include\taglib\tag.lib.php 找到
-
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";
改成
-
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword'])."/";
4、TAG標(biāo)簽分頁偽靜態(tài)鏈接
打開
\include\arc.taglist.class.php 找到
-
$this->PageNo = $GLOBALS['PageNo'];
在它的下面加入
-
if($this->PageNo == 0)
-
{
-
$this->PageNo = 1;
-
}
繼續(xù)找到
-
$prepage="";
在它的上面加入
-
global $cfg_rewrite;
繼續(xù)找到
-
$purl .= "?/".urlencode($this->Tag);
改成
-
if($cfg_rewrite == 'Y')
-
{
-
$purl = "/tags/".urlencode($this->Tag);
-
}
-
else
-
{
-
$purl .= "?/".urlencode($this->Tag);
-
}
4、搜索頁偽靜態(tài)鏈接
打開
\plus\search.php 找到
-
$t1 = ExecTime();
在它的下面加入
-
$keyword = preg_replace("/-(\d+)/i",'',$keyword);
-
$oldkeyword = preg_replace("/-(\d+)/i",'',$oldkeyword);
打開
\include\arc.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提交搜索,參考下面代碼,注意紅框的地方
-
<script type="text/javascript">
-
function search()
-
{
-
var q = document.getElementById("q").value;
-
window.location.href = "http://www.2l3.net/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.2l3.net/search/"+q+".html";
-
}
-
}
-
</script>
-
<form action="" method="post" onsubmit="return false">
-
<div class="form">
-
<h4>搜索</h4>
-
<input name="q" id="q" onkeydown="enterIn(this,event);" type="text" />
-
<button type="submit" class="search-submit" onclick="search()">搜索</button>
-
</div>
-
</form>
偽靜態(tài)規(guī)則
懶人包已經(jīng)打包了iis6、iis7、8、apache、nginx的規(guī)則文件
下面再寫一下各規(guī)則
iis6偽靜態(tài)規(guī)則 httpd.ini
-
#列表頁和列表分頁
-
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)容頁和內(nèi)容分頁
-
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]
-
#搜索頁
-
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
-
<?xml version="1.0" encoding="UTF-8"?>
-
<configuration>
-
<system.webServer>
-
<rewrite>
-
<rules>
-
<rule name="首頁">
-
<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="列表分頁">
-
<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="文章分頁">
-
<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首頁">
-
<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列表分頁">
-
<match url="^tags/(.*)/([0-9])(?:(\?.*))*$" ignoreCase="false" />
-
<action type="Rewrite" url="/tags.php?/{R:1}/{R:2}" appendQueryString="false" />
-
</rule>
-
<rule name="tag列表分頁最后有左斜杠">
-
<match url="^tags/(.*)/([0-9])/(?:(\?.*))*$" ignoreCase="false" />
-
<action type="Rewrite" url="/tags.php?/{R:1}/{R:2}/" appendQueryString="false" />
-
</rule>
-
<rule name="搜索頁分頁">
-
<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="搜索頁">
-
<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
-
#列表頁和列表分頁
-
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)容頁和內(nèi)容分頁
-
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\/
-
#搜索頁
-
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;
提取密碼:jg2y