品牌seo公司焦作關(guān)鍵詞優(yōu)化排名
織夢偽靜態(tài)將tag標(biāo)簽的url設(shè)置成id的方法:
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 `#@__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)
<rule name="tag首頁"><match url="^tags.html$" ignoreCase="false" /><action type="Rewrite" url="tags.php" appendQueryString="false" />
</rule>
<rule name="tag列表"><match url="^tags/([0-9]+).html$" ignoreCase="false" /><action type="Rewrite" url="/tags.php?/{R:1}" appendQueryString="false" />
</rule>
<rule name="tag列表最后有左斜杠"><match url="^tags/([0-9]+).html$" ignoreCase="false" /><action type="Rewrite" url="/tags.php?/{R:1}/" appendQueryString="false" />
</rule>
<rule name="tag列表分頁"><match url="^tags/([0-9]+)_([0-9]+).html$" ignoreCase="false" /><action type="Rewrite" url="/tags.php?/{R:1}/{R:2}" appendQueryString="false" />
</rule>
<rule name="tag列表分頁最后有左斜杠"><match url="^tags/([0-9]+)_([0-9]+).html$" ignoreCase="false" /><action type="Rewrite" url="/tags.php?/{R:1}/{R:2}/" appendQueryString="false" />
</rule>
5、后臺TAG標(biāo)簽管理里的TAG鏈接修改為偽靜態(tài)(非必需,根據(jù)需要修改)
在/dede/templets/tags_main.htm文件89行找到:
<a href="../tags.php?/<?php echo urlencode($fields['tag']); ?>/" target="_blank">{dede:field.tag /}</a>
將其替換為:
<a href="../tags/{dede:field.id /}.html" target="_blank">{dede:field.tag /}</a>
注:以上默認(rèn)為PC站tag標(biāo)簽偽靜態(tài),將tag標(biāo)簽的URL鏈接修改id.html的方法