discuz 伪静态规则
Apache Web Server(独立主机用户)
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 RewriteRule ^(.*)/article-([0-9]+)\.html$ $1/portal.php?mod=article&articleid=$2 RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3 RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3 RewriteRule ^(.*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3 RewriteRule ^(.*)/([a-z]+)-(.+)\.html$ $1/$2.php?rewrite=$3 </IfModule>
Apache Web Server(虚拟主机用户)
# 将 RewriteEngine 模式打开 RewriteEngine On # 修改以下语句中的 /discuz 为你的论坛目录地址,如果程序放在根目录中,请将 /discuz 修改为 / RewriteBase /discuz # Rewrite 系统规则请勿修改 RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1 RewriteRule ^article-([0-9]+)\.html$ portal.php?mod=article&articleid=$1 RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2 RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2 RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2 RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2 RewriteRule ^([a-z]+)-(.+)\.html$ $1.php?rewrite=$2
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&$3 RewriteRule ^(.*)/article-([0-9]+)\.html\?*(.*)$ $1/portal\.php\?mod=article&articleid=$2&$3 RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html\?*(.*)$ $1/forum\.php\?mod=forumdisplay&fid=$2&page=$3&$4 RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$ $1/forum\.php\?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$5 RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html\?*(.*)$ $1/forum\.php\?mod=group&fid=$2&page=$3&$4 RewriteRule ^(.*)/space-(username|uid)-(.+)\.html\?*(.*)$ $1/home\.php\?mod=space&$2=$3&$4 RewriteRule ^(.*)/([a-z]+)-(.+)\.html\?*(.*)$ $1/$2\.php\?rewrite=$3&$4
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]+)\.html\?*(.*)$ if matched then set URL = $1/portal.php?mod=article&articleid=$2&$3 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 ^(.*)/([a-z]+)-(.+)\.html\?*(.*)$ if matched then set URL = $1/$2.php?rewrite=$3&$4 endif
Nginx Web Server
rewrite ^(.*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 last; rewrite ^(.*)/article-([0-9]+)\.html$ $1/portal.php?mod=article&articleid=$2 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 ^(.*)/([a-z]+)-(.+)\.html$ $1/$2.php?rewrite=$3 last;
版权声明:
作者:Kiyo
链接:https://www.wkiyo.cn/html/2010-07/i648.html
来源:Kiyo's space
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
共有 0 条评论