日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

網(wǎng)上99%都是不完善和殘缺的 或者各種不兼容,有的論壇還復(fù)制別人的DZ3.2版本的偽靜態(tài)方法說(shuō)是支持3.4版本的,全是讓人浪費(fèi)時(shí)間。

A、主題分類偽靜態(tài)設(shè)置方法:

準(zhǔn)備好修改的模板文件:forumdisplay.htm和forumdisplay_list.htm

這兩個(gè)文件都在 templatedefaultforum 的目錄下(有修改過(guò)discuz模板,以你的主題文件路徑為準(zhǔn),如/template/主題模板文件夾/forum)。

我們要先修改主題分類的:打開forumdisplay.htm的源代碼:

默認(rèn)主題一般在415行,當(dāng)然如你的主題有修改過(guò)discuz模板,以你的主題文件路徑為準(zhǔn)

1.修改forumdisplay.htm文件中

<li><a href="forum.php?mod=forumdisplay&fid=$_G[fid]&filter=typeid&typeid=$id$forumdisplayadd[typeid]{if $_GET['archiveid']}&archiveid={$_GET['archiveid']}{/if}">

修改為:

<li><a href="forumtype-$_G[fid]-$id-$page.html{if $_GET['archiveid']}&archiveid={$_GET['archiveid']}{/if}">

2.接下來(lái)再打開forumdisplay_list.htm的源代碼:默認(rèn)主題一般在162行,如你的主題有修改過(guò)模板,以你的主題文件為準(zhǔn)找到:

<a href="forum.php?mod=viewthread&tid=$thread[tid]&{if $_GET['archiveid']}archiveid={$_GET['archiveid']}&{/if}extra=$extra"$thread[highlight]{if $thread['isgroup'] == 1 || $thread['forumstick']} target="_blank"{else} onclick="atarget(this)"{/if} class="s xst">$thread[subject]</a>

修改為:

<a href="forum.php?mod=viewthread&tid=$thread[tid]{if $_G['gp_archiveid']}&archiveid={$_G['gp_archiveid']}{/if}"$thread[highlight]{if $thread['isgroup'] == 1 || $thread['forumstick']} target="_blank"{else} onclick="atarget(this)"{/if} class="s xst">$thread[subject]</a>

3.主題類別前綴【只顯示文字】,2個(gè)地方需要修改

i、打開sourcemoduleforumforum_forumdisplay.php,查找

forum.php?mod=forumdisplay&fid='.$_G['fid'].'&filter=typeid&typeid='.$thread['typeid'].'

替換為:

forumtype-'.$_G['fid'].'-'.$thread['typeid'].'-1.html

ii、打開模板目錄viewthread.htm,查找

forum.php?mod=forumdisplay&fid=$_G[fid]&filter=typeid&typeid=$_G[forum_thread][typeid]

替換為:

forumtype-$_G[fid]-{$_G[forum_thread][typeid]}-1.html

最后我們要把主題分類的偽靜態(tài)規(guī)則添加到相應(yīng)文件中,規(guī)則如下

(因?yàn)榄h(huán)境問(wèn)題,只測(cè)試了.htaccess,其它請(qǐng)自行測(cè)試):

.htaccess 偽靜態(tài)規(guī)則 請(qǐng)?jiān)赗ewriteRule ^forum-(w+)-([0-9]+).html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1下面增加:

RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^forumtype-(w+)-(w+)-([0-9]+).html$ forum.php?mod=forumdisplay&fid=$1&filter=typeid&typeid=$2&page=$3&%1

注意:增加的規(guī)則不能放最后,特別是不能 不能 不能放在插件規(guī)則RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_-]+).html$ plugin.php?id=$1 :$2&%1之后,不然訪問(wèn)分類偽靜態(tài)會(huì)出現(xiàn)“插件不存在或刪除”的錯(cuò)誤。

httpd.ini 偽靜態(tài)規(guī)則

RewriteRule ^(.*)/forumtype-(w+)-(w+)-([0-9]+).html(?(.*))*$ $1/forum.php?mod=forumdisplay&fid=$2&filter=typeid&typeid=$3&page=$4&$5

web.config 偽靜態(tài)規(guī)則

<rule name="forum_forumtype">
<match url="^(.*/)*forumtype-(w+)-(w+)-([0-9]+).html?*(.*)[ DISCUZ_CODE_2 ]quot; />
<action type="Rewrite" url="{R:1}/forum.php?mod=forumdisplay&fid={R:2}&filter=typeid&typeid={R:3}&page={R:4}&{R:5}" />
</rule>

B、分類信息列表內(nèi)的帖子設(shè)置偽靜態(tài)方法:

打開 forum/forumdisplay_list.htm 模板,將

<a href="forum.php?mod=viewthread&tid=$thread[tid]&{if $_GET['archiveid']}archiveid={$_GET['archiveid']}&{/if}extra=$extra"$thread[highlight]{if $thread['isgroup'] == 1 || $thread['forumstick']} target="_blank"{else}{/if} class="s xst">$thread[subject]</a>

替換為:

<a href="forum.php?mod=viewthread&tid=$thread[tid]"{$thread[highlight]} {if $thread['isgroup'] == 1 || $thread['forumstick']}target="_blank"{else}onclick="atarget(this)"{/if} class="s xst">$thread[subject]</a>

修改后,當(dāng)選中分類時(shí),列表中的帖子鏈接將為偽靜態(tài),但帖子的分頁(yè)鏈接仍是動(dòng)態(tài),還需進(jìn)行以下修改。

打開 source/module/forum/forum_forumdisplay.php 文件,將

<a href="forum.php?mod=viewthread&tid=$realtid&".(!empty($multipate_archive) ? "$multipate_archive&" : '')."extra=$extra&page=$i">

替換為:

<a href="thread-$realtid-$i-1.html">

<a href="forum.php?mod=viewthread&tid=$realtid&".(!empty($multipate_archive) ? "$multipate_archive&" : '')."extra=$extra&page=$thread[pages]">

替換為:

<a href="thread-$realtid-$thread[pages]-1.html">

這樣,Discuz! X3.4 主題分類和分類信息帖子鏈接都會(huì)為偽靜態(tài),有興趣的站長(zhǎng)趕緊試試啊(默認(rèn)模板測(cè)試有效)!

分享到:
標(biāo)簽:分類信息 可用 方法 設(shè)置 靜態(tài)
用戶無(wú)頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過(guò)答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫(kù),初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定