discuz x2 多服务器伪静态规则
来源:易贤网 阅读:1036 次 日期:2016-07-02 08:44:52
温馨提示:易贤网小编为您整理了“discuz x2 多服务器伪静态规则”,方便广大网友查阅!

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 系统规则请勿修改

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教程
易贤网手机网站地址:discuz x2 多服务器伪静态规则
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:易贤网
云南网警报警专用图标