時(shí)間:2022-07-17 23:57:01 | 來源:建站知識
時(shí)間:2022-07-17 23:57:01 來源:建站知識
1、在網(wǎng)站根目錄下的tags.php中18行找到:
if(isset($tags[2])) $PageNo = intval($tags[2]);
在其下方加入代碼:
$tagid = intval($tag);
if(!empty($tagid))
{
$row = $dsql->GetOne("SELECT tag FROM `dede_tagindex` WHERE id = {$tagid}");
if(!is_array($row))
{
ShowMsg("系統(tǒng)無此標(biāo)簽,可能已經(jīng)移除!","-1");exit();
}
else
{
$tag = $row['tag'];
define('DEDERETAG', 'Y');
}
}
else
{
$tag = '';
}
如圖
2、/include/taglib/tag.lib.php 87行找到:
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";
將其替換成:
$row['link'] = $cfg_cmsurl."/tags/".$row['id'].".html";
3、/include/arc.taglist.class.php 458行找到:
$purl .= "?/".urlencode($this->Tag);
將其替換成:
if(!defined('DEDERETAG'))
{
$purl .= "?/".urlencode($this->Tag);
}
繼續(xù)找到:
return $plist;
在其上方加入代碼:
if(defined('DEDERETAG'))
{
$plist = preg_replace('/_(/d+).html/i','.html',$plist);
$plist = preg_replace('/.html//(/d+)///i','_//1.html',$plist);
$plist = str_replace('_1','',$plist);
}
4、tag 標(biāo)簽偽靜態(tài)規(guī)則,請根據(jù)自己所使用的服務(wù)器環(huán)境選擇對應(yīng)的規(guī)則.
.htaccess (Apache)
RewriteEngine On
RewriteBase /
RewriteRule ^tags/.html$ tags/.php
RewriteRule ^tags/([0-9]+)/.html$ tags/.php/?//$1 [L]
RewriteRule ^tags/([0-9]+)/.html$ tags/.php/?//$1//
RewriteRule ^tags/([0-9]+)_([0-9]+)/.html$ tags/.php/?//$1//$2
RewriteRule ^tags/([0-9]+)_([0-9]+)/.html$ tags/.php/?//$1//$2//
Nginx
rewrite ^/tags/.html$ /tags.php;
rewrite ^/tags/([0-9]+)/.html$ /tags.php?//$1;
rewrite ^/tags/([0-9]+)/.html$ /tags.php?//$1//;
rewrite ^/tags/([0-9]+)_([0-9]+)/.html$ /tags.php?//$1//$2;
rewrite ^/tags/([0-9]+)_([0-9]+)/.html$ /tags.php?//$1//$2//;
web.config (iis7 iis8)
5、后臺TAG標(biāo)簽管理里的TAG鏈接修改為偽靜態(tài)(非必需,根據(jù)需要修改)
在/dede/templets/tags_main.htm文件89行找到:
{dede:field.tag /}
將其替換為:
{dede:field.tag /}
注:以上默認(rèn)為PC站tag標(biāo)簽偽靜態(tài),將tag標(biāo)簽的URL鏈接修改id.html的方法,如果你的網(wǎng)站有移動端且使用的是動態(tài)頁面,那么你還需將移動端tag標(biāo)簽的鏈接偽靜態(tài),獨(dú)立移動端方法一樣修改對應(yīng)文件即可。
文章來源:白天博客
來源地址:https://www.seobti.com/2776.html
關(guān)鍵詞:教程,設(shè)置
客戶&案例
關(guān)于我們
微信公眾號
版權(quán)所有? 億企邦 1997-2022 保留一切法律許可權(quán)利。