校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 網站建設 > 建站知識 > 織夢Dedecms設置偽靜態具體方法

織夢Dedecms設置偽靜態具體方法

POST TIME:2020-04-13 22:27

首先在dede后臺開啟(開啟的方法在系統參數-核心設置)

第一步. 首先欄目和文章最好設置成動態瀏覽. 這樣才不會生成靜態html文件.
第二步. 設置重寫規則. 在系統目錄下加一個 .htaccess文件. 內容為:

代碼如下  

RewriteEngine On
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
RewriteRule ^plus/view-([0-9]+)-1.html$ /plus/view.php?arcID=$1
RewriteRule ^plus/view-([0-9]+)-([0-9]+).html$ /plus/view.php?aid=$1&pageno=$2

iis文件寫法

代碼如下  

#首頁偽靜態規則,如果不使用動態首頁,請勿必刪除這一行,否則打開首頁會出現死循環
RewriteRule ^(.*)/index.html $1/index.php [I]
#列表頁偽靜態規則
RewriteRule ^(.*)/category/list-([0-9]+).html $1/plus/list.php?tid=$2 [I]
RewriteRule ^(.*)/category/list-([0-9]+)-([0-9]+)-([0-9]+).html $1/plus/list.php?tid=$2&TotalResult=$3&PageNo=$4 [I]
#文章頁偽靜態規則
RewriteRule ^(.*)/archives/view-([0-9]+)-([0-9]+).html $1/plus/view.php?arcID=$2&pageno=$3 [I]
#搜索偽靜態規則
RewriteRule ^(.*)/search.html(?:(?.*))* $1/search.php?$2 [I]
#TAG標簽偽靜態規則
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]

如果你的系統支持url重寫,到這里就可以用偽靜態訪問了.
第三步.更改重寫的URL.

如果用默認的設置, 訪問的URL是:

代碼如下  

http://www.XXXX.com/plus/view-131-1.html

這樣的形色, 我們是可以更改這種樣式的.

找到文件//helpers/channelunit.helper.php打開.

可以看到有這樣的語句

代碼如下  

return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html';

這就是文章的url形色.

$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;

這是列表的重寫url.
可以使url更短一點,完成可以寫成:

代碼如下  

return "/view-".$aid.'-1.html';

$reurl = "/list-".$typeid.".html";

這時重寫規則也要更新.

代碼如下  


RewriteEngine On
RewriteRule ^list-([0-9]+).html$ /plus/list.php?tid=$1
RewriteRule ^list-([0-9]+)-([0-9]+)-([0-9]+).html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3
RewriteRule ^view-([0-9]+)-1.html$ /plus/view.php?arcID=$1
RewriteRule ^view-([0-9]+)-([0-9]+).html$ /plus/view.php?aid=$1&pageno=$2


更進一步,還可以把view換成自己的任何詞語,這也要把include/arc.archives.class.php文件中的view也一樣替換。
發布選項: 生成HTML 僅動態瀏覽 發文章的時候選一下也不多事。為了以后升級 盡量減少修改文件。
以下這沒有試,大家按需要測試吧~~

修改

將所有文檔設置為“僅動態”,可以進入管理中,執行下面命令:

代碼如下  

update dede_archives set ismake=-1

并將ismake的默認值設置為 -1即動態。

將所有欄目設置為“使用動態頁”,可以進入數據庫管理中,執行下面命令:

代碼如下  

update dede_arctype set isdefault=-1


DedeCmsTAG標簽偽靜態

DedeCms默認的TAG標簽URL,形如/tags.php?/dedecms5.7/,非常之難看。打開/include/taglib/tag.lib.php,找到lib_tag()函數下的:

代碼如下  

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

替換為

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

修改代碼
我們需要修改include/arc.taglist.class.php,將分頁函數替換為:

代碼如下  

/** * 獲取動態的分頁列表
*
* @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 == "" || ("/[^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 = ('.', $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='".$purl."-1.html'>首頁</a></li>rn";
}
else
{
$indexpage="<li><a>首頁</a></li>rn";
}
if($this->PageNo!=$totalpage && $totalpage>1)
{
$nextpage.="<li><a href='".$purl."-$nextpagenum.html'>下一頁</a></li>rn";
$endpage="<li><a href='".$purl."-$totalpage.html'>末頁</a></li>rn";
}
else
{
$endpage="<li><a>末頁</a></li>rn";
}

//獲得數字鏈接
$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='".$purl."-$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;
}




收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266
主站蜘蛛池模板: 安化县| 六安市| 泸溪县| 青海省| 吴堡县| 土默特左旗| 北安市| 抚宁县| 夏河县| 揭西县| 龙胜| 镇江市| 新建县| 和顺县| 桑植县| 新巴尔虎左旗| 南充市| 曲沃县| 凤城市| 邢台县| 重庆市| 九龙城区| 峨边| 永泰县| 肇州县| 连云港市| 雷波县| 梅州市| 黑水县| 宝应县| 广德县| 上犹县| 赤城县| 昆山市| 英山县| 嘉荫县| 六枝特区| 阜新市| 扎兰屯市| 文山县| 嘉荫县|