立即注册

微信登录

只需一步,快速开始

QQ登录

只需一步,快速开始

无量觉社区



会员资源切换至【手机版】
开启左侧

[discuz] Discuz3.5论坛伪静态规则设置

[复制链接]
发表于 2025-7-19 08:50:46 | 显示全部楼层 |阅读模式
https://www.bilibili.com/video/B ... 25b08c02d4907f9c5ef
回到网站首页
点击管理中心
点击全局
点击SEO设置
这里是选择伪静态设置的页面
如果不知道怎么选择,就可以把他全部选上
设置伪静态有利于SEO优化
点击提交
我们以宝塔服务器环境来进行演示
点击设置
点击伪静态
回到我们的114源码论坛网站
将Nginx 的伪静态代码进行复制
回到宝塔,将伪静态代码粘贴
点击保存
回到首页刷新
点击网站源码
点击文章
可以看见我们的伪静态规则设置成功了
今天我们的教程就讲到这里了


b站地址:https://www.bilibili.com/video/B ... 59014c1f9f1f2299b9d

Discuz3.5论坛伪静态规则设置Nginx: https://pan.baidu.com/s/1Lv_hCFmTlfgUz3U_tZ0KQw?pwd=r3xc 提取码: r3xc

Discuz百度网盘教程合集:https://pan.baidu.com/s/184g1tKRXwF7JYxKeijB6cQ?pwd=43ny 提取码: 43ny

哔哩哔哩合集:https://www.bilibili.com/video/B ... 999.section.playall

设置规则收集

Apache Web Server(独立主机用户)
  1. <IfModule mod_rewrite.c>
  2.         RewriteEngine On
  3.         RewriteCond %{QUERY_STRING} ^(.*)$
  4.         RewriteRule ^(.*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2&%1
  5.         RewriteCond %{QUERY_STRING} ^(.*)$
  6.         RewriteRule ^(.*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3&%1
  7.         RewriteCond %{QUERY_STRING} ^(.*)$
  8.         RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3&%1
  9.         RewriteCond %{QUERY_STRING} ^(.*)$
  10.         RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&%1
  11.         RewriteCond %{QUERY_STRING} ^(.*)$
  12.         RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3&%1
  13.         RewriteCond %{QUERY_STRING} ^(.*)$
  14.         RewriteRule ^(.*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3&%1
  15.         RewriteCond %{QUERY_STRING} ^(.*)$
  16.         RewriteRule ^(.*)/blog-([0-9]+)-([0-9]+)\.html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3&%1
  17.         RewriteCond %{QUERY_STRING} ^(.*)$
  18.         RewriteRule ^(.*)/archiver/(fid|tid)-([0-9]+)\.html$ $1/archiver/index.php?action=$2&value=$3&%1
  19.         RewriteCond %{QUERY_STRING} ^(.*)$
  20.         RewriteRule ^(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ $1/plugin.php?id=$2:$3&%1
  21. </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-([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
  • RewriteCond %{QUERY_STRING} ^(.*)$
  • RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ plugin.php?id=$12&%1

[color=rgb(51, 102, 153) !important]


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 ^([^\.]*)/archiver/(fid|tid)-([0-9]+)\.html$ $1/archiver/index.php?action=$2&value=$3 last;
  • rewrite ^([^\.]*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ $1/plugin.php?id=$23 last;
  • if (!-e $request_filename) {
  •         return 404;
  • }

[color=rgb(51, 102, 153) !important]


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 ^(.*)/archiver/(fid|tid)-([0-9]+)\.html(\?(.*))*$ $1/archiver/index\.php\?action=$2&value=$3&$5
  • RewriteRule ^(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html(\?(.*))*$ $1/plugin\.php\?id=$23&$5

[color=rgb(51, 102, 153) !important]复制代码


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-([0-9]+)-([0-9]+).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+)-([0-9]+).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-([0-9]+)-([0-9]+)-([0-9]+).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-([0-9]+)-([0-9]+).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-([0-9]+)-([0-9]+).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)-([0-9]+).html\?*(.*)$" />
  •                         <action type="Rewrite" url="{R:1}/archiver/index.php\?action={R:2}&value={R:3}&{R:4}" />
  •                 </rule>
  •                 <rule name="plugin">
  •                         <match url="^(.*/)*([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+).html\?*(.*)$" />
  •                         <action type="Rewrite" url="{R:1}/plugin.php\?id={R:2}:{R:3}&{R:4}" />
  •                 </rule>
  •         </rules>
  • </rewrite>

[color=rgb(51, 102, 153) !important]复制代码

Lighttpd Web Server
  • url.rewrite-once = (
  • "(.*)/topic-(.+)\.html\?*(.*)$" => "$1/portal.php?mod=topic&topic=$2&$3",
  • "(.*)/article-([0-9]+)-([0-9]+)\.html\?*(.*)$" => "$1/portal.php?mod=view&aid=$2&page=$3&$4",
  • "(.*)/forum-(\w+)-([0-9]+)\.html\?*(.*)$" => "$1/forum.php?mod=forumdisplay&fid=$2&page=$3&$4",
  • "(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$" => "$1/forum.php?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$5",
  • "(.*)/group-([0-9]+)-([0-9]+)\.html\?*(.*)$" => "$1/forum.php?mod=group&fid=$2&page=$3&$4",
  • "(.*)/space-(username|uid)-(.+)\.html\?*(.*)$" => "$1/home.php?mod=space&$2=$3&$4",
  • "(.*)/blog-([0-9]+)-([0-9]+)\.html\?*(.*)$" => "$1/home.php?mod=space&uid=$2&do=blog&id=$3&$4",
  • "(.*)/archiver/(fid|tid)-([0-9]+)\.html\?*(.*)$" => "$1/archiver/index.php?action=$2&value=$3&$4",
  • "(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html\?*(.*)$" => "$1/plugin.php?id=$23&$4",
  • )

[color=rgb(51, 102, 153) !important]复制代码


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-([0-9]+)-([0-9]+)\.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+)-([0-9]+)\.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-([0-9]+)-([0-9]+)-([0-9]+)\.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-([0-9]+)-([0-9]+)\.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-([0-9]+)-([0-9]+)\.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)-([0-9]+)\.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 ^(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$
  • rewrite @plugin {re.plugin.1}/plugin.php?id={re.plugin.2}:{re.plugin.3}&{query}






主题推广




回复

使用道具 举报

 楼主| 发表于 2025-7-19 08:57:37 | 显示全部楼层
旧版设置方法:

最近有部分用户在使用discuz搭建好网站后,不知道如何设置discuz网站的伪静态。
下面就跟大家详细介绍下如何设置discuz网站的伪静态。

1、登陆discuz网站后台,默认后台路径是:域名/admin.php


2、在discuz管理后台,点击上方导航栏的【全局】,进入全局设置


3、在全局设置里,点击左侧导航栏【SEO设置】


4、全部勾选URL静态化内容选项,完成后点击下方【提交】


5、登陆空间控制面板,打开【文件管理器】


6、点击【public_html】,进入空间根目录


7、进入根目录后,下拉至底部。在创建新文件处,输入“.htaccess”并点击创建


8、复制粘贴下面的discuz伪静态规则(注意不要对代码进行修改),完成后点击下方【另存为】
RewriteEngine On
RewriteBase /
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
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ plugin.php?id=$12&%1
※全选上方代码复制粘贴(如下图)


完成以上内容,您的discuz网站伪静态就设置成功了。


回复 支持 反对

使用道具 举报

游客
回复
您需要登录后才可以回帖 登录 | 立即注册

切换至【手机版】|主站|Archiver| Amituforum 无量觉社区

JS of wanmeiff.com and vcpic.com Please keep this copyright information, respect of, thank you!JS of wanmeiff.com and vcpic.com Please keep this copyright information, respect of, thank you!

|网站地图

GMT+8, 2026-2-4 11:55 , Processed in 0.070178 second(s), 10 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Discuz Team.

快速回复 返回顶部 返回列表