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

主頁 > 網(wǎng)站建設 > 建站知識 > 織夢Dedecms設置偽靜態(tài)詳細方法

織夢Dedecms設置偽靜態(tài)詳細方法

POST TIME:2020-04-02 21:29

dedecms默認是不支持偽靜態(tài),如果要設置偽靜態(tài)我們需要懂一點程序基礎知識了,下面我來給大家介紹在apache下實現(xiàn)Dedecms設置偽靜態(tài)方法,有需要的朋友可參考一下

首先在dede后臺開啟偽靜態(tài)(開啟的方法在系統(tǒng)參數(shù)-核心設置)

第一步. 首先欄目和文章最好設置成動態(tài)瀏覽. 這樣才不會生成靜態(tài)html文件.
第二步. 設置重寫規(guī)則. 在系統(tǒng)目錄下加一個 .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文件寫法
復制代碼

代碼如下:

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

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

如果用默認的設置, 訪問的URL是:
復制代碼

代碼如下:

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

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

找到文件/include/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";

這時重寫規(guī)則也要更新.

復制代碼
代碼如下:

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也一樣替換。
發(fā)布選項: 生成HTML 僅動態(tài)瀏覽 發(fā)文章的時候選一下也不多事。為了以后升級 盡量減少修改文件。
以下這沒有試,大家按需要測試吧~~

修改數(shù)據(jù)庫

將所有文檔設置為“僅動態(tài)”,可以進入數(shù)據(jù)庫管理中,執(zhí)行下面命令:

復制代碼
代碼如下:

update dede_archives set ismake=-1

并將ismake的默認值設置為 -1即動態(tài)。

將所有欄目設置為“使用動態(tài)頁”,可以進入數(shù)據(jù)庫管理中,執(zhí)行下面命令:

復制代碼
代碼如下:

update dede_arctype set isdefault=-1

DedeCmsTAG標簽偽靜態(tài)

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

復制代碼
代碼如下:

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

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

復制代碼
代碼如下:

/** * 獲取動態(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 "共1頁/".$this->TotalResult."條";
}
if($this->TotalResult == 0)
{
return "共0頁/".$this->TotalResult."條";
}
$maininfo = "共{$totalpage}頁/".$this->TotalResult."條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.="
  • 上一頁
  • rn";
    $indexpage="
  • 首頁
  • rn";
    }
    else
    {
    $indexpage="
  • 首頁
  • rn";
    }
    if($this->PageNo!=$totalpage && $totalpage>1)
    {
    $nextpage.="
  • 下一頁
  • rn";
    $endpage="
  • 末頁
  • rn";
    }
    else
    {
    $endpage="
  • 末頁
  • 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.= "
  • $j
  • rn";
    }
    else
    {
    $listdd.="
  • ".$j."
  • 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
主站蜘蛛池模板: 永泰县| 叙永县| 迁安市| 鄂温| 上林县| 汉寿县| 云浮市| 诏安县| 墨脱县| 神农架林区| 宁国市| 营口市| 徐汇区| 凌云县| 通河县| 永川市| 墨玉县| 北宁市| 巴林左旗| 江源县| 策勒县| 海淀区| 岑溪市| 蛟河市| 邛崃市| 彩票| 吴桥县| 彭州市| 迭部县| 桂林市| 西贡区| 盈江县| 五家渠市| 游戏| 清徐县| 乌拉特后旗| 仙居县| 建德市| 龙泉市| 秦皇岛市| 漳州市|