Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[发布] Discuz!X2.5伪静态文件 httpd.ini 、.htaccess 和 web.config 应用中心一键下载

  [复制链接]
回帖奖励 876 枚金币      回复本帖可获得 1 枚金币奖励! 每人限 1 次(中奖概率 30%)
1314学习网 发表于 2012-9-30 15:58:19 | 显示全部楼层 |阅读模式
插件发布
插件名称: DZ伪静态文件
插件来源: 原创插件
适用版本: Discuz! X2.5
语言编码: GBK简体 UTF8简体 BIG5繁体 UTF8繁体 
最后更新时间: 2012-09-29
插件作者: 1314学习网(www.1314study.com)
插件简介: 本扩展是方便站长添加服务器伪静态规则文件的,只建议刚接触Discuz,还不会添加设置伪静态的站长使用
本帖最后由 1314学习网 于 2013-10-28 21:51 编辑




应用介绍 本扩展是方便站长添加服务器伪静态规则文件的,只建议刚接触Discuz,还不会添加设置伪静态的站长使用

IIS6伪静态规则(需安装rewrite2.x组件)
httpd.ini 已经写好,只需要您的主机支持即可

Apache伪静态规则
.htaccess 已经写好,只需要您的主机支持即可


Discuz! 站长联盟: http://qgc.qq.com/38793945/

回复后免费下载

[hid]
备注:如果你的伪静态不是按默认的设置,可在:
  1. http://你的网站地址/admin.php?action=checktools&operation=rewrite&frame=no
复制代码
来查看你的伪静态规则
X2.5默认伪静态规则:
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 ^(.*)/(fid|tid)-([0-9]+)\.html$ $1/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(虚拟主机用户)
  1. # 将 RewriteEngine 模式打开
  2. RewriteEngine On

  3. # 修改以下语句中的 /discuz 为您的论坛目录地址,如果程序放在根目录中,请将 /discuz 修改为 /
  4. RewriteBase /discuz

  5. # Rewrite 系统规则请勿修改
  6. RewriteCond %{QUERY_STRING} ^(.*)$
  7. RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1
  8. RewriteCond %{QUERY_STRING} ^(.*)$
  9. RewriteRule ^article-([0-9]+)-([0-9]+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1
  10. RewriteCond %{QUERY_STRING} ^(.*)$
  11. RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1
  12. RewriteCond %{QUERY_STRING} ^(.*)$
  13. RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1
  14. RewriteCond %{QUERY_STRING} ^(.*)$
  15. RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2&%1
  16. RewriteCond %{QUERY_STRING} ^(.*)$
  17. RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2&%1
  18. RewriteCond %{QUERY_STRING} ^(.*)$
  19. RewriteRule ^blog-([0-9]+)-([0-9]+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1
  20. RewriteCond %{QUERY_STRING} ^(.*)$
  21. RewriteRule ^archiver/(fid|tid)-([0-9]+)\.html$ archiver/index.php?action=$1&value=$2&%1
  22. RewriteCond %{QUERY_STRING} ^(.*)$
  23. RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ plugin.php?id=$1:$2&%1

复制代码
IIS Web Server(独立主机用户)
  1. [ISAPI_Rewrite]

  2. # 3600 = 1 hour
  3. CacheClockRate 3600

  4. RepeatLimit 32

  5. # Protect httpd.ini and httpd.parse.errors files
  6. # from accessing through HTTP
  7. RewriteRule ^(.*)/topic-(.+)\.html(\?(.*))*$ $1/portal\.php\?mod=topic&topic=$2&$4
  8. RewriteRule ^(.*)/article-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/portal\.php\?mod=view&aid=$2&page=$3&$5
  9. RewriteRule ^(.*)/forum-(\w+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=forumdisplay&fid=$2&page=$3&$5
  10. RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$6
  11. RewriteRule ^(.*)/group-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/forum\.php\?mod=group&fid=$2&page=$3&$5
  12. RewriteRule ^(.*)/space-(username|uid)-(.+)\.html(\?(.*))*$ $1/home\.php\?mod=space&$2=$3&$5
  13. RewriteRule ^(.*)/blog-([0-9]+)-([0-9]+)\.html(\?(.*))*$ $1/home\.php\?mod=space&uid=$2&do=blog&id=$3&$5
  14. RewriteRule ^(.*)/(fid|tid)-([0-9]+)\.html(\?(.*))*$ $1/index\.php\?action=$2&value=$3&$5
  15. RewriteRule ^(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html(\?(.*))*$ $1/plugin\.php\?id=$2:$3&$5

复制代码
IIS7 Web Server(独立主机用户)
  1. <rewrite>
  2. <rules>
  3. <rule name="portal_topic">
  4. <match url="^(.*/)*topic-(.+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  5. <action type="Rewrite" url="{R:1}/portal.php\?mod=topic&topic={R:2}&{R:3}" />
  6. </rule>
  7. <rule name="portal_article">
  8. <match url="^(.*/)*article-([0-9]+)-([0-9]+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  9. <action type="Rewrite" url="{R:1}/portal.php\?mod=view&aid={R:2}&page={R:3}&{R:4}" />
  10. </rule>
  11. <rule name="forum_forumdisplay">
  12. <match url="^(.*/)*forum-(\w+)-([0-9]+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  13. <action type="Rewrite" url="{R:1}/forum.php\?mod=forumdisplay&fid={R:2}&page={R:3}&{R:4}" />
  14. </rule>
  15. <rule name="forum_viewthread">
  16. <match url="^(.*/)*thread-([0-9]+)-([0-9]+)-([0-9]+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  17. <action type="Rewrite" url="{R:1}/forum.php\?mod=viewthread&tid={R:2}&extra=page%3D{R:4}&page={R:3}&{R:5}" />
  18. </rule>
  19. <rule name="group_group">
  20. <match url="^(.*/)*group-([0-9]+)-([0-9]+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  21. <action type="Rewrite" url="{R:1}/forum.php\?mod=group&fid={R:2}&page={R:3}&{R:4}" />
  22. </rule>
  23. <rule name="home_space">
  24. <match url="^(.*/)*space-(username|uid)-(.+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  25. <action type="Rewrite" url="{R:1}/home.php\?mod=space&{R:2}={R:3}&{R:4}" />
  26. </rule>
  27. <rule name="home_blog">
  28. <match url="^(.*/)*blog-([0-9]+)-([0-9]+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  29. <action type="Rewrite" url="{R:1}/home.php\?mod=space&uid={R:2}&do=blog&id={R:3}&{R:4}" />
  30. </rule>
  31. <rule name="forum_archiver">
  32. <match url="^(.*/)*(fid|tid)-([0-9]+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  33. <action type="Rewrite" url="{R:1}/index.php\?action={R:2}&value={R:3}&{R:4}" />
  34. </rule>
  35. <rule name="plugin">
  36. <match url="^(.*/)*([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+).html\?*(.*)[        DISCUZ_CODE_4        ]quot; />
  37. <action type="Rewrite" url="{R:1}/plugin.php\?id={R:2}:{R:3}&{R:4}" />
  38. </rule>
  39. </rules>
  40. </rewrite>
复制代码
Zeus Web Server
  1. match URL into $ with ^(.*)/topic-(.+)\.html\?*(.*)$
  2. if matched then
  3. set URL = $1/portal.php?mod=topic&topic=$2&$3
  4. endif
  5. match URL into $ with ^(.*)/article-([0-9]+)-([0-9]+)\.html\?*(.*)$
  6. if matched then
  7. set URL = $1/portal.php?mod=view&aid=$2&page=$3&$4
  8. endif
  9. match URL into $ with ^(.*)/forum-(\w+)-([0-9]+)\.html\?*(.*)$
  10. if matched then
  11. set URL = $1/forum.php?mod=forumdisplay&fid=$2&page=$3&$4
  12. endif
  13. match URL into $ with ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html\?*(.*)$
  14. if matched then
  15. set URL = $1/forum.php?mod=viewthread&tid=$2&extra=page\%3D$4&page=$3&$5
  16. endif
  17. match URL into $ with ^(.*)/group-([0-9]+)-([0-9]+)\.html\?*(.*)$
  18. if matched then
  19. set URL = $1/forum.php?mod=group&fid=$2&page=$3&$4
  20. endif
  21. match URL into $ with ^(.*)/space-(username|uid)-(.+)\.html\?*(.*)$
  22. if matched then
  23. set URL = $1/home.php?mod=space&$2=$3&$4
  24. endif
  25. match URL into $ with ^(.*)/blog-([0-9]+)-([0-9]+)\.html\?*(.*)$
  26. if matched then
  27. set URL = $1/home.php?mod=space&uid=$2&do=blog&id=$3&$4
  28. endif
  29. match URL into $ with ^(.*)/(fid|tid)-([0-9]+)\.html\?*(.*)$
  30. if matched then
  31. set URL = $1/index.php?action=$2&value=$3&$4
  32. endif
  33. match URL into $ with ^(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html\?*(.*)$
  34. if matched then
  35. set URL = $1/plugin.php?id=$2:$3&$4
  36. endif

复制代码
Nginx Web Server
  1. rewrite ^([^\.]*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 last;
  2. rewrite ^([^\.]*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
  3. rewrite ^([^\.]*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
  4. rewrite ^([^\.]*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
  5. rewrite ^([^\.]*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3 last;
  6. rewrite ^([^\.]*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3 last;
  7. rewrite ^([^\.]*)/blog-([0-9]+)-([0-9]+)\.html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3 last;
  8. rewrite ^([^\.]*)/(fid|tid)-([0-9]+)\.html$ $1/index.php?action=$2&value=$3 last;
  9. rewrite ^([^\.]*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ $1/plugin.php?id=$2:$3 last;
  10. if (!-e $request_filename) {
  11. return 404;
  12. }

复制代码
应用中心下载地址:

https://addon.dismall.com/?@study_kz_rewrite.pack
[/hide]

原文地址:Discuz!X2.5伪静态文件 httpd.ini 、.htaccess 和 web.config 应用中心一键下载



Discuz! 站长联盟: http://qgc.qq.com/38793945/

访问1314学习网获取更多免费应用:http://www.discuz.1314study.com/


更多插件:http://addon.1314study.com/

评分

1

查看全部评分

点触验证码 发表于 2012-9-30 21:41:42 | 显示全部楼层
好东西,顶一个~
回复

使用道具 举报

20021110 发表于 2012-10-5 11:54:47 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

潮宅男女 发表于 2012-10-5 13:29:28 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

 楼主| 1314学习网 发表于 2012-9-30 16:04:14 | 显示全部楼层
本帖最后由 1314学习网 于 2013-1-21 13:08 编辑

5元促销插件
【1314学习网出品】[1314]首页头图汇总插件火热促销【原价50元,促销价只要5元】
https://discuz.dismall.com/thread-3195622-1-1.html
[1314]SEO天涯海角商业版火热促销【原价50元,促销价只要5元】
https://discuz.dismall.com/thread-3195826-1-1.html
[1314]友情链接增强商业版火热促销【原价50元,促销价只要5元】
https://discuz.dismall.com/thread-3195813-1-1.html

更多插件推荐:
[1314]首页头图汇总:https://addon.dismall.com/?@study_homepicture.plugin

1314]版主已阅插件:https://addon.dismall.com/?@study_haveread.plugin

[1314]友情链接增强:https://addon.dismall.com/?@study_friendlink.plugin

1314祝福墙:https://addon.dismall.com/?@study_zhufu.plugin

[1314]SEO天涯海角:https://addon.dismall.com/?@study_seo_tyhj.plugin

[1314]最佳答案:https://addon.dismall.com/?@study_bestanswer.plugin

[1314]标签伪静态:https://addon.dismall.com/?@study_rewrite_tag.plugin
回复

使用道具 举报

火舞狂龙 发表于 2012-9-30 16:06:21 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

微笑ジ掩盖忧伤( 发表于 2012-9-30 16:21:21 | 显示全部楼层
啊啊啊 啊啊啊啊啊啊啊 啊啊啊啊 啊啊啊
回复

使用道具 举报

550116593@ 发表于 2012-9-30 17:08:35 | 显示全部楼层
提示: 该帖被管理员或版主屏蔽
回复

使用道具 举报

550116593@ 发表于 2012-9-30 17:09:21 | 显示全部楼层
提示: 该帖被管理员或版主屏蔽
回复

使用道具 举报

[游民部落] 发表于 2012-9-30 18:50:23 | 显示全部楼层
                                       我还在第一页么?


{:soso__2679410915193432094_3:}
回复

使用道具 举报

医药院 发表于 2012-9-30 21:17:34 | 显示全部楼层
前排支持
回复

使用道具 举报

ぷㄗigerzhu 发表于 2012-9-30 21:29:05 | 显示全部楼层
看回复后的具体内容
回复

使用道具 举报

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

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-3-29 19:55 , Processed in 0.141754 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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