花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

dedecms5.7偽靜態(tài)及rewrite規(guī)則

時間: 2019-05-13 11:31 閱讀: 作者:素材無憂網(wǎng)

1 首先需要在后臺開啟偽靜態(tài)(服務(wù)器必須支持)
2 設(shè)置欄目必須是使用動態(tài)頁
3修改 include/channelunit.func.php 文件
查找

代碼如下:
$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;

替換成:

代碼如下:
$reurl = $GLOBALS['cfg_phpurl']."/list-".$typeid.".html";

該處的修改是為了把導(dǎo)航及dede默認的動態(tài)鏈接換成靜態(tài)

如果你想文章頁也偽靜態(tài) 那么在添加文檔時選擇 高級參數(shù)—>僅動態(tài)瀏覽
附上偽靜態(tài)規(guī)則
iis

代碼如下:
[ISAPI_Rewrite]
# 緩存3600秒 = 1 小時(hour)
CacheClockRate 3600
RepeatLimit 32
RewriteRule ^(.*)/index\.html $1/index\.php
RewriteRule ^(.*)/plus/list-([0-9]+)\.html $1/plus/list\.php\?tid=$2
RewriteRule ^(.*)/plus/list-([0-9]+)-([0-9]+)-([0-9]+)\.html $1/plus/list\.php\?tid=$2&TotalResult=$3&PageNo=$4
RewriteRule ^(.*)/plus/view-([0-9]+)-([0-9]+)\.html $1/plus/view\.php\?arcID=$2&pageno=$3
apache

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule index\.html /index\.php
RewriteRule plus/list-([0-9]+)\.html$ /plus/list.php?tid=$1
RewriteRule plus/view-([0-9]+)-([0-9]+)\.html$ /plus/view.php?arcID=$1&pageno=$3
RewriteRule plus/list-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3

版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: dedecms5.7偽靜態(tài)及rewrite規(guī)則

標(biāo)簽:  
相關(guān)文章
模板推薦