溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么用html的tag標簽實現(xiàn)靜態(tài)化

發(fā)布時間:2022-03-01 16:56:31 來源:億速云 閱讀:136 作者:iii 欄目:web開發(fā)

這篇文章主要講解了“怎么用html的tag標簽實現(xiàn)靜態(tài)化”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用html的tag標簽實現(xiàn)靜態(tài)化”吧!

一、FTP下載tag對應(yīng)超鏈接底層文件

下載/tag.lib.php(途徑/include/taglib/tag.lib.php)進行本地修改
下載arc.taglist.class.php(路子/include/arc.taglist.class.php)發(fā)展當?shù)匦拚?br/> 下載taglist.htm(路徑templets/default/taglist.htm)進行外地修改

批改后偽靜態(tài)后路子:
//www.css5.com.cn/tags.html
//www.css5.com.cn/tags/居中-1.html
//www.css5.com.cn/tags/居中-2.html

二、批改 /include/taglib/tag.lib.php

找到

$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";

改成

$row['link'] = $cfg_cmsurl."/tags/".rawurlencode($row['keyword'])."-1.html";

三、打開/include/arc.taglist.class.php(修改今朝位置導(dǎo)航鏈接地點)

1、找到(失去當前鏈接所在)

function GetCurUrl()
{
if(!empty($_SERVER["REQUEST_URI"]))
{
$nowurl = $_SERVER["REQUEST_URI"];
$nowurls = explode("?",$nowurl);
$nowurl = $nowurls[0];
}
else
{
$nowurl = $_SERVER["PHP_SELF"];
}
return $nowurl;
}

修正成

function GetCurUrl() 
{ 
$nowurl = $_SERVER["PHP_SELF"]; 
$nowurl=str_replace(".php",'',$nowurl); 
return $nowurl; 
}

2、找到(批改連接所在路徑1)

$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;

改成

$plist = '';
if(eregi('info',$listitem))
{
$plist .= $maininfo.' ';
}
if(eregi('index',$listitem))
{
$plist .= $indexpage.' ';
}
if(eregi('pre',$listitem))
{
$plist .= $prepage.' ';
}
if(eregi('pageno',$listitem))
{
$plist .= $listdd.' ';
}
if(eregi('next',$listitem))
{
$plist .= $nextpage.' ';
}
if(eregi('end',$listitem))
{
$plist .= $endpage.' ';
}
return $plist;

3、找到(批改分頁鏈接)

if($j == $this->PageNo)
{
$listdd.= "<li class=\"thisclass\"><a>$j</a></li>\r\n";
}
else
{
$listdd.="<li><a href='".$purl."/$j/'>".$j."</a></li>\r\n";
}

修正成

if($j == $this->PageNo)
{
$listdd.= " $j "; 
}
else
{
$listdd.=" <a href='".$purl."-$j.html'>".$j."</a> "; 
}

4、找到(修改分頁 上一頁 下一頁門路)

if($this->PageNo != 1)
{
$prepage.="<li><a href='".$purl."/$prepagenum/'>上一頁</a></li>\r\n";
$indexpage="<li><a href='".$purl."/1/'>首頁</a></li>\r\n";
}
else
{
$indexpage="<li><a>首頁</a></li>\r\n";
}
if($this->PageNo!=$totalpage && $totalpage>1)
{
$nextpage.="<li><a href='".$purl."/$nextpagenum/'>下一頁</a></li>\r\n";
$endpage="<li><a href='".$purl."/$totalpage/'>末頁</a></li>\r\n";
}
else
{
$endpage="<li><a>末頁</a></li>\r\n";
}

批改成

if($this->PageNo != 1)
{
if($this->PageNo == 2){
$prepage.="<a href='".$purl."-1.html'>上一頁</a>\r\n";
$indexpage="<a href='".$purl."-1.html'>首頁</a>\r\n";
}
else{
$prepage.=" <a href='".$purl."-$prepagenum.html'>上一頁</a> ";
$indexpage=" <a href='".$purl."-1.html'>首頁</a> ";
}
}
else
{
$indexpage=" 首頁 ";
}
if($this->PageNo!=$totalpage && $totalpage>1)
{
$nextpage.=" <a href='".$purl."-$nextpagenum.html'>下一頁</a> ";
$endpage=" <a href='".$purl."-$totalpage.html'>末頁</a> ";
}
else
{
$endpage="末頁";
}

5、找到(修改 共幾頁 去掉class與html標簽)

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>\r\n";
$purl = $this->GetCurUrl();
$purl .= "?/".urlencode($this->Tag);

修改成

if($totalpage <= 1 && $this->TotalResult > 0)
{
return "共1頁/".$this->TotalResult."";
}
if($this->TotalResult == 0)
{
return "共0頁/".$this->TotalResult."";
}
$maininfo = "共{$totalpage}頁/".$this->TotalResult."";
$purl = $this->GetCurUrl();
$purl .= rawurlencode($this->Tag);

6、當心修改生因素頁地點過失修正,tag偽消息所在自帶問號不合錯誤:

當心URL修改
$purl .= "?/".urlencode($this->Tag);
改成
$purl .= "/".urlencode($this->Tag);

四、翻開templets/default/taglist.htm(修改目前職位導(dǎo)航鏈接地址)

找到

<strong>目前職位:</strong>:<a href="{dede:global.cfg_cmsurl/}/">主頁</a> > <a href='tags.php'>TAG標簽</a> > {dede:field.title /}

修正成

<strong>當前職位:</strong>:<a href="{dede:global.cfg_cmsurl/}/">主頁</a> > <a href='/tags.html'>TAG標簽</a> > {dede:field.title /}

五、添加偽音訊劃定規(guī)矩:

假定你的空間瑣屑是Windows細碎請在httpd.ini 文件里進行增加下列劃定:

httpd.ini 文件偽音訊規(guī)定


  1. RewriteRule ^(.*)/tags\.html $1/tags\.php

    • RewriteRule ^(.*)/tags/(.*)-([0-9]+).html $1/tags\.php\?$2/$3 

感謝各位的閱讀,以上就是“怎么用html的tag標簽實現(xiàn)靜態(tài)化”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對怎么用html的tag標簽實現(xiàn)靜態(tài)化這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI