discuz x2 多服務器偽靜態(tài)規(guī)則
來源:易賢網(wǎng) 閱讀:1283 次 日期:2016-07-02 08:44:52
溫馨提示:易賢網(wǎng)小編為您整理了“discuz x2 多服務器偽靜態(tài)規(guī)則”,方便廣大網(wǎng)友查閱!

apache web server(獨立主機用戶)

代碼如下:

<ifmodule mod_rewrite.c>

rewriteengine on

rewritecond %{query_string} ^(.*)$

rewriterule ^(.*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^(.*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^(.*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page\%3d$4&page=$3&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^(.*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^(.*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^(.*)/blog-([0-9]+)-([0-9]+)\.html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^(.*)/(fid|tid)-([0-9]+)\.html$ $1/index.php?action=$2&value=$3&%1

</ifmodule>

apache web server(虛擬主機用戶)

代碼如下:

# 將 rewriteengine 模式打開

rewriteengine on

# 修改以下語句中的 /discuz 為你的論壇目錄地址,如果程序放在根目錄中,請將 /discuz 修改為 /

rewritebase /discuz

# rewrite 系統(tǒng)規(guī)則請勿修改

rewritecond %{query_string} ^(.*)$

rewriterule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^article-([0-9]+)-([0-9]+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3d$3&page=$2&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^blog-([0-9]+)-([0-9]+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1

rewritecond %{query_string} ^(.*)$

rewriterule ^archiver/(fid|tid)-([0-9]+)\.html$ archiver/index.php?action=$1&value=$2&%1

iis web server(獨立主機用戶)

代碼如下:

[isapi_rewrite]

# 3600 = 1 hour

cacheclockrate 3600

repeatlimit 32

# protect httpd.ini and httpd.parse.errors files

# from accessing through http

rewriterule ^(.*)/topic-(.+)\.html(\?(.*))*$ $1/portal\.php\?mod=topic&topic=$2&$4

rewriterule ^(.*)/article-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/portal\.php\?mod=view&aid=$2&page=$3&$5

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

rewriterule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=viewthread&tid=$2&extra=page\%3d$4&page=$3&$6

rewriterule ^(.*)/group-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=group&fid=$2&page=$3&$5

rewriterule ^(.*)/space-(username|uid)-(.+)\.html(\?(.*))*$ $1/home\.php\?mod=space&$2=$3&$5

rewriterule ^(.*)/blog-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/home\.php\?mod=space&uid=$2&do=blog&id=$3&$5

rewriterule ^(.*)/(fid|tid)-([0-9]+)\.html(\?(.*))*$ $1/index\.php\?action=$2&value=$3&$5

iis7 web server(獨立主機用戶)

代碼如下:

<rewrite>

<rules>

<rule name=portal_topic>

<match url=^(.*/)*topic-(.+).html\?*(.*)$ />

<action type=rewrite url={r:1}/portal.php\?mod=topic&amp;topic={r:2}&amp;{r:3} />

</rule>

<rule name=portal_article>

<match url=^(.*/)*article-([0-9]+)-([0-9]+).html\?*(.*)$ />

<action type=rewrite url={r:1}/portal.php\?mod=view&amp;aid={r:2}&amp;page={r:3}&amp;{r:4} />

</rule>

<rule name=forum_forumdisplay>

<match url=^(.*/)*forum-(\w+)-([0-9]+).html\?*(.*)$ />

<action type=rewrite url={r:1}/forum.php\?mod=forumdisplay&amp;fid={r:2}&amp;page={r:3}&amp;{r:4} />

</rule>

<rule name=forum_viewthread>

<match url=^(.*/)*thread-([0-9]+)-([0-9]+)-([0-9]+).html\?*(.*)$ />

<action type=rewrite url={r:1}/forum.php\?mod=viewthread&amp;tid={r:2}&amp;extra=page%3d{r:4}&amp;page={r:3}&amp;{r:5} />

</rule>

<rule name=group_group>

<match url=^(.*/)*group-([0-9]+)-([0-9]+).html\?*(.*)$ />

<action type=rewrite url={r:1}/forum.php\?mod=group&amp;fid={r:2}&amp;page={r:3}&amp;{r:4} />

</rule>

<rule name=home_space>

<match url=^(.*/)*space-(username|uid)-(.+).html\?*(.*)$ />

<action type=rewrite url={r:1}/home.php\?mod=space&amp;{r:2}={r:3}&amp;{r:4} />

</rule>

<rule name=home_blog>

<match url=^(.*/)*blog-([0-9]+)-([0-9]+).html\?*(.*)$ />

<action type=rewrite url={r:1}/home.php\?mod=space&amp;uid={r:2}&amp;do=blog&amp;id={r:3}&amp;{r:4} />

</rule>

<rule name=forum_archiver>

<match url=^(.*/)*(fid|tid)-([0-9]+).html\?*(.*)$ />

<action type=rewrite url={r:1}/index.php\?action={r:2}&amp;value={r:3}&amp;{r:4} />

</rule>

</rules>

</rewrite>

zeus web server

代碼如下:

match url into $ with ^(.*)/topic-(.+)\.html\?*(.*)$

if matched then

set url = $1/portal.php?mod=topic&topic=$2&$3

endif

match url into $ with ^(.*)/article-([0-9]+)-([0-9]+)\.html\?*(.*)$

if matched then

set url = $1/portal.php?mod=view&aid=$2&page=$3&$4

endif

match url into $ with ^(.*)/forum-(\w+)-([0-9]+)\.html\?*(.*)$

if matched then

set url = $1/forum.php?mod=forumdisplay&fid=$2&page=$3&$4

endif

match url into $ with ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$

if matched then

set url = $1/forum.php?mod=viewthread&tid=$2&extra=page\%3d$4&page=$3&$5

endif

match url into $ with ^(.*)/group-([0-9]+)-([0-9]+)\.html\?*(.*)$

if matched then

set url = $1/forum.php?mod=group&fid=$2&page=$3&$4

endif

match url into $ with ^(.*)/space-(username|uid)-(.+)\.html\?*(.*)$

if matched then

set url = $1/home.php?mod=space&$2=$3&$4

endif

match url into $ with ^(.*)/blog-([0-9]+)-([0-9]+)\.html\?*(.*)$

if matched then

set url = $1/home.php?mod=space&uid=$2&do=blog&id=$3&$4

endif

match url into $ with ^(.*)/(fid|tid)-([0-9]+)\.html\?*(.*)$

if matched then

set url = $1/index.php?action=$2&value=$3&$4

endif

nginx web server

代碼如下:

rewrite ^([^\.]*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 last;

rewrite ^([^\.]*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3 last;

rewrite ^([^\.]*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;

rewrite ^([^\.]*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3d$4&page=$3 last;

rewrite ^([^\.]*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3 last;

rewrite ^([^\.]*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3 last;

rewrite ^([^\.]*)/blog-([0-9]+)-([0-9]+)\.html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3 last;

rewrite ^([^\.]*)/(fid|tid)-([0-9]+)\.html$ $1/index.php?action=$2&value=$3 last;

if (!-e $request_filename) {

return 404;

}

更多信息請查看CMS教程
易賢網(wǎng)手機網(wǎng)站地址:discuz x2 多服務器偽靜態(tài)規(guī)則
由于各方面情況的不斷調整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復僅供參考,敬請考生以權威部門公布的正式信息和咨詢?yōu)闇剩?/div>
相關閱讀CMS教程

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網(wǎng)