花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊(cè) 退出 找回密碼

織夢(mèng)dedecms系統(tǒng)tags偽靜態(tài)完美解決辦法

時(shí)間: 2018-12-09 20:40 閱讀: 作者:素材無憂網(wǎng)

用dedecms 系統(tǒng)做網(wǎng)站的朋友特別多,dedecms功能強(qiáng)大,除了安全是一個(gè)問題外,tags標(biāo)簽靜態(tài)化問題困擾很多朋友,湖哥為了解決一個(gè)網(wǎng)站的tags標(biāo)簽靜態(tài)化問題找了很多文章,也試了很多次,終于在今天解決了這個(gè)問題: 
 1.dedecms版本  5.7 sp1 GBK 
 2.服務(wù)器:windows 2008 iis7 
 話不多說,開始! 
 目標(biāo):我們要使原來tags.php?/3qshop/  變動(dòng)為/tags/3qshop.html 并且為偽靜態(tài),為什么要為偽靜態(tài)?因?yàn)槲覀兊年P(guān)鍵詞(tags)太多,比真正靜態(tài)節(jié)省空間。 
 那么我們要做如下工作,記得一步一步來哦! 
 第1步: 
 首先找到/include/taglib/tag.lib.php中,在87行找到 
$row['link'] = $cfg_cmsurl."/tags?".urlencode($row['keyword']); 
 將其修改為: 
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword']).".html"; 
 第2步: 
 修改分頁代碼部分 
 修改include/arc.taglist.class.php,找到分頁函數(shù),將其更換為: 
 注意:從429行  ---->541行  用以下內(nèi)容替換! 
 (提示:網(wǎng)上有文章中講的以下代碼中的"pageinfo"是錯(cuò)誤的,應(yīng)該為\"pageinfo\",不然會(huì)有錯(cuò)誤提示哦!已經(jīng)代碼測(cè)試OK?。?nbsp;
/** * 獲取動(dòng)態(tài)的分頁列表 

* @access public 
* @param int $list_len 列表寬度 
* @param string $listitem 列表樣式 
* @return string 
*/ 
function GetPageListDM($list_len,$listitem="info,index,end,pre,next,pageno") 

$prepage=""; 
$nextpage=""; 
$prepagenum = $this->PageNo - 1; 
$nextpagenum = $this->PageNo + 1; 
if($list_len == "" || preg_match("/[^0-9]/", $list_len)) 

$list_len = 3; 

$totalpage = $this->TotalPage; 
if($totalpage <= 1 && $this->TotalResult > 0) 

return "<span class=\"pageinfo\">共1頁/".$this->TotalResult."條</span>"; 

if($this->TotalResult == 0) 

return "<span class=\"pageinfo\">共0頁/".$this->TotalResult."條</span>"; 

$maininfo = "<span class=\"pageinfo\">共{$totalpage}頁/".$this->TotalResult."條</span>rn"; 
$purl = $this->GetCurUrl(); 
$basename = basename($purl); 
$tmpname = explode('.', $basename); 

$purl = str_replace($basename, '', $purl).urlencode($this->Tag); 
//var_dump($purl);exit; 
//$purl .= "?/".urlencode($this->Tag); 

//獲得上一頁和下一頁的鏈接 
if($this->PageNo != 1) 

$prepage.="<li><a href='".$purl."-$prepagenum'.html>上一頁</a></li>rn"; 
$indexpage="<li><a href="&quot;.$purl.&quot;-1.html">首頁</a></li>rn"; 

else 

$indexpage="<li><a>首頁</a></li>rn"; 

if($this->PageNo!=$totalpage && $totalpage>1) 

$nextpage.="<li><a href="&quot;.$purl.&quot;-$nextpagenum.html">下一頁</a></li>rn"; 
$endpage="<li><a href="&quot;.$purl.&quot;-$totalpage.html">末頁</a></li>rn"; 

else 

$endpage="<li><a>末頁</a></li>rn"; 


//獲得數(shù)字鏈接 
$listdd=""; 
$total_list = $list_len * 2 + 1; 
if($this->PageNo >= $total_list) 

$j = $this->PageNo - $list_len; 
$total_list = $this->PageNo + $list_len; 
if($total_list > $totalpage) 

$total_list = $totalpage; 


else 

$j=1; 
if($total_list > $totalpage) 

$total_list = $totalpage; 


for($j; $j<=$total_list; $j++) 

if($j == $this->PageNo) 

$listdd.= "<li class=\"thisclass\"><a>$j</a></li>rn"; 

else 

$listdd.="<li><a href="&quot;.$purl.&quot;-$j.html">".$j."</a></li>rn"; 


$plist = ''; 
if(preg_match('/info/i', $listitem)) 

$plist .= $maininfo.' '; 

if(preg_match('/index/i', $listitem)) 

$plist .= $indexpage.' '; 

if(preg_match('/pre/i', $listitem)) 

$plist .= $prepage.' '; 

if(preg_match('/pageno/i', $listitem)) 

$plist .= $listdd.' '; 

if(preg_match('/next/i', $listitem)) 

$plist .= $nextpage.' '; 

if(preg_match('/end/i', $listitem)) 

$plist .= $endpage.' '; 

return $plist; 




第3步: 
  
 設(shè)置偽靜態(tài)規(guī)則: 
<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
<system.webServer> 
<rewrite> 
<rules> 
<rule name="weather1" stopprocessing="true"> 
<match url="tags/([^-]+).html$" ignorecase="true" /> 
<conditions logicalgrouping="MatchAll"> 
<add input="{REQUEST_FILENAME}" matchtype="IsFile" negate="true" /> 
<add input="{REQUEST_FILENAME}" matchtype="IsDirectory" negate="true" /> 
</conditions> 
<action type="Rewrite" url="/tags.php?/{R:1}" appendquerystring="false" /> 
</rule> 
<rule name="weather2" stopprocessing="true"> 
<match url="tags/([^-]+)-([0-9]+).html$" ignorecase="true" /> 
<conditions logicalgrouping="MatchAll"> 
<add input="{REQUEST_FILENAME}" matchtype="IsFile" negate="true" /> 
<add input="{REQUEST_FILENAME}" matchtype="IsDirectory" negate="true" /> 
</conditions> 
<action type="Rewrite" url="/tags.php?/{R:1}/{R:2}" appendquerystring="false" /> 
</rule> 
</rules> 
</rewrite> 
</system.webServer> 
</configuration> 
 把以上內(nèi)容保存為:web.config  放到網(wǎng)站根目錄! 
 第4步: 
 生成文章,瀏覽!大功告成?錯(cuò),有可能你會(huì)出現(xiàn)以下錯(cuò)誤! 
 系統(tǒng)無此標(biāo)簽,可能已經(jīng)移除! 
 你還可以嘗試通過搜索程序去搜索這個(gè)關(guān)鍵字:前往搜索>> 
 如果你的瀏覽器沒反應(yīng),請(qǐng)點(diǎn)擊這里... 
 解決辦法如下: 
 在網(wǎng)站根目錄下找到tags.php 此文件,將以下代碼替換掉: 
$tag = trim($_SERVER['QUERY_STRING']); 
 換成 
$tag = strtolower(trim($_SERVER['QUERY_STRING'])); 
 出現(xiàn)這個(gè)問題的原因是IIS偽靜態(tài)中文轉(zhuǎn)碼為UTF8,解決方法就是在tags.php中加入判斷UTF8編碼的語句,如果是則轉(zhuǎn)換為GBK,這樣就可以解決了 
 方法: 
 1.把以下代碼加入到根目錄下tags.php中的18行下面,也就是if(isset($tags[2])) $PageNo = intval($tags[2]);下面哦: 
function is_utf8($tag) 

if (preg_match("/^([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}/",$tag) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}$/",$tag) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){2,}/",$tag) == true) 

return true; 

else 

return false; 


 2.在第25行上面加入以下語句,也就是在$tag = FilterSearch(urldecode($tag));上面加入,記得這里是上面哦! 
if(is_utf8($tag)==1) { $tag = iconv("utf-8","gbk",$tag); } 
 這個(gè)作用就是調(diào)用上面的函數(shù)判斷編碼 如果是 utf8則轉(zhuǎn)為gbk; 
 到此,tags偽靜態(tài)問題全面完美解決!      

版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!

轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)dedecms系統(tǒng)tags偽靜態(tài)完美解決辦法

標(biāo)簽:  
相關(guān)文章
模板推薦