Discuz3.5伪静态设置(精心收集整理)
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-(+)-(+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*)/forum-(\w+)-(+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*)/thread-(+)-(+)-(+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*)/group-(+)-(+)\.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-(+)-(+)\.html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*)/archiver/(fid|tid)-(+)\.html$ $1/archiver/index.php?action=$2&value=$3&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*)/(+*)-(+)\.html$ $1/plugin.php?id=$2:$3&%1
</IfModule>
Apache Web Server(虚拟主机用户)# 将 RewriteEngine 模式打开
RewriteEngine On
# 如 www.discuz.vip/bbs/,对应的就是 RewriteBase /bbs/,如果程序放在根目录中,使用 RewriteBase /
RewriteBase /
# Rewrite 系统规则请勿修改
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^article-(+)-(+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^forum-(\w+)-(+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^thread-(+)-(+)-(+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^group-(+)-(+)\.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-(+)-(+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^archiver/(fid|tid)-(+)\.html$ archiver/index.php?action=$1&value=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(+*)-(+)\.html$ plugin.php?id=$1:$2&%1
Nginx Web Serverrewrite ^([^\.]*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 last;
rewrite ^([^\.]*)/article-(+)-(+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
rewrite ^([^\.]*)/forum-(\w+)-(+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^\.]*)/thread-(+)-(+)-(+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
rewrite ^([^\.]*)/group-(+)-(+)\.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-(+)-(+)\.html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3 last;
rewrite ^([^\.]*)/archiver/(fid|tid)-(+)\.html$ $1/archiver/index.php?action=$2&value=$3 last;
rewrite ^([^\.]*)/(+*)-(+)\.html$ $1/plugin.php?id=$2:$3 last;
if (!-e $request_filename) {
return 404;
}
IIS Web Server(独立主机用户)
# 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-(+)-(+)\.html(\?(.*))*$ $1/portal\.php\?mod=view&aid=$2&page=$3&$5
RewriteRule ^(.*)/forum-(\w+)-(+)\.html(\?(.*))*$ $1/forum\.php\?mod=forumdisplay&fid=$2&page=$3&$5
RewriteRule ^(.*)/thread-(+)-(+)-(+)\.html(\?(.*))*$ $1/forum\.php\?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$6
RewriteRule ^(.*)/group-(+)-(+)\.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-(+)-(+)\.html(\?(.*))*$ $1/home\.php\?mod=space&uid=$2&do=blog&id=$3&$5
RewriteRule ^(.*)/archiver/(fid|tid)-(+)\.html(\?(.*))*$ $1/archiver/index\.php\?action=$2&value=$3&$5
RewriteRule ^(.*)/(+*)-(+)\.html(\?(.*))*$ $1/plugin\.php\?id=$2:$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&topic={R:2}&{R:3}" />
</rule>
<rule name="portal_article">
<match url="^(.*/)*article-(+)-(+).html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/portal.php\?mod=view&aid={R:2}&page={R:3}&{R:4}" />
</rule>
<rule name="forum_forumdisplay">
<match url="^(.*/)*forum-(\w+)-(+).html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/forum.php\?mod=forumdisplay&fid={R:2}&page={R:3}&{R:4}" />
</rule>
<rule name="forum_viewthread">
<match url="^(.*/)*thread-(+)-(+)-(+).html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/forum.php\?mod=viewthread&tid={R:2}&extra=page%3D{R:4}&page={R:3}&{R:5}" />
</rule>
<rule name="group_group">
<match url="^(.*/)*group-(+)-(+).html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/forum.php\?mod=group&fid={R:2}&page={R:3}&{R:4}" />
</rule>
<rule name="home_space">
<match url="^(.*/)*space-(username|uid)-(.+).html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/home.php\?mod=space&{R:2}={R:3}&{R:4}" />
</rule>
<rule name="home_blog">
<match url="^(.*/)*blog-(+)-(+).html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/home.php\?mod=space&uid={R:2}&do=blog&id={R:3}&{R:4}" />
</rule>
<rule name="forum_archiver">
<match url="^(.*/)*archiver/(fid|tid)-(+).html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/archiver/index.php\?action={R:2}&value={R:3}&{R:4}" />
</rule>
<rule name="plugin">
<match url="^(.*/)*(+*)-(+).html\?*(.*)$" />
<action type="Rewrite" url="{R:1}/plugin.php\?id={R:2}:{R:3}&{R:4}" />
</rule>
</rules>
</rewrite>Lighttpd Web Serverurl.rewrite-once = (
"(.*)/topic-(.+)\.html\?*(.*)$" => "$1/portal.php?mod=topic&topic=$2&$3",
"(.*)/article-(+)-(+)\.html\?*(.*)$" => "$1/portal.php?mod=view&aid=$2&page=$3&$4",
"(.*)/forum-(\w+)-(+)\.html\?*(.*)$" => "$1/forum.php?mod=forumdisplay&fid=$2&page=$3&$4",
"(.*)/thread-(+)-(+)-(+)\.html\?*(.*)$" => "$1/forum.php?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$5",
"(.*)/group-(+)-(+)\.html\?*(.*)$" => "$1/forum.php?mod=group&fid=$2&page=$3&$4",
"(.*)/space-(username|uid)-(.+)\.html\?*(.*)$" => "$1/home.php?mod=space&$2=$3&$4",
"(.*)/blog-(+)-(+)\.html\?*(.*)$" => "$1/home.php?mod=space&uid=$2&do=blog&id=$3&$4",
"(.*)/archiver/(fid|tid)-(+)\.html\?*(.*)$" => "$1/archiver/index.php?action=$2&value=$3&$4",
"(.*)/(+*)-(+)\.html\?*(.*)$" => "$1/plugin.php?id=$2:$3&$4",
)
Caddy Web Server@portal_topic path_regexp portal_topic ^(.*)/topic-(.+)\.html$
rewrite @portal_topic {re.portal_topic.1}/portal.php?mod=topic&topic={re.portal_topic.2}&{query}
@portal_article path_regexp portal_article ^(.*)/article-(+)-(+)\.html$
rewrite @portal_article {re.portal_article.1}/portal.php?mod=view&aid={re.portal_article.2}&page={re.portal_article.3}&{query}
@forum_forumdisplay path_regexp forum_forumdisplay ^(.*)/forum-(\w+)-(+)\.html$
rewrite @forum_forumdisplay {re.forum_forumdisplay.1}/forum.php?mod=forumdisplay&fid={re.forum_forumdisplay.2}&page={re.forum_forumdisplay.3}&{query}
@forum_viewthread path_regexp forum_viewthread ^(.*)/thread-(+)-(+)-(+)\.html$
rewrite @forum_viewthread {re.forum_viewthread.1}/forum.php?mod=viewthread&tid={re.forum_viewthread.2}&extra=page\%3D{re.forum_viewthread.4}&page={re.forum_viewthread.3}&{query}
@group_group path_regexp group_group ^(.*)/group-(+)-(+)\.html$
rewrite @group_group {re.group_group.1}/forum.php?mod=group&fid={re.group_group.2}&page={re.group_group.3}&{query}
@home_space path_regexp home_space ^(.*)/space-(username|uid)-(.+)\.html$
rewrite @home_space {re.home_space.1}/home.php?mod=space&{re.home_space.2}={re.home_space.3}&{query}
@home_blog path_regexp home_blog ^(.*)/blog-(+)-(+)\.html$
rewrite @home_blog {re.home_blog.1}/home.php?mod=space&uid={re.home_blog.2}&do=blog&id={re.home_blog.3}&{query}
@forum_archiver path_regexp forum_archiver ^(.*)/archiver/(fid|tid)-(+)\.html$
rewrite @forum_archiver {re.forum_archiver.1}/archiver/index.php?action={re.forum_archiver.2}&value={re.forum_archiver.3}&{query}
@plugin path_regexp plugin ^(.*)/(+*)-(+)\.html$
rewrite @plugin {re.plugin.1}/plugin.php?id={re.plugin.2}:{re.plugin.3}&{query}
页:
[1]