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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[已解决] 2.5RC 版 伪静态成功 90%

[复制链接]
urs2 发表于 2012-3-5 14:58:10 | 显示全部楼层 |阅读模式
Apache Web Server(虚拟主机用户)
  1. # 将 RewriteEngine 模式打开
  2. RewriteEngine On

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

  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 ^blog-([0-9]+)-([0-9]+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1
  18. RewriteCond %{QUERY_STRING} ^(.*)$
  19. RewriteRule ^archiver/(fid|tid)-([0-9]+)\.html$ archiver/index.php?action=$1&value=$2&%1
  20. RewriteCond %{QUERY_STRING} ^(.*)$
  21. RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ plugin.php?id=$1:$2&%1
复制代码


用户个人主页 :开启伪静态,会出错,暂时没有选择,其他伪静态目前测试正常。

高人顶夺一下。http://idc.99se.org/forum-2-1.html

还有是不是没有办法调用别人的图片?







绵阳在线 发表于 2012-3-5 15:00:22 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

 楼主| urs2 发表于 2012-3-5 15:01:18 | 显示全部楼层
回复

使用道具 举报

 楼主| urs2 发表于 2012-3-5 15:03:13 | 显示全部楼层
绵阳在线 发表于 2012-3-5 15:00
呵呵,谢谢楼主贡献哦,我先收藏了,以后升级了用。

要看你的主机是不是也是Apache的。
回复

使用道具 举报

 楼主| urs2 发表于 2012-3-5 15:03:57 | 显示全部楼层
已经全部伪静态打开了。

唯一的问题:中文用户:海阔天空 http://idc.99se.org/space-uid-17.html
会自动跳转到:http://idc.99se.org/home.php?mod=space&uid=17&do=profile
回复

使用道具 举报

venpeen 发表于 2012-3-5 15:04:26 | 显示全部楼层
楼主,我也遇到了同样的问题,图片调用无法显示;
伪静态:武汉上班族(www.monthzu.com)建议你要空间山重新在服务器山设置一下,就好了!
回复

使用道具 举报

venpeen 发表于 2012-3-5 15:06:45 | 显示全部楼层
我的是虚拟主机,我用的伪静态规则是:

[ISAPI_Rewrite]
# 以下是www主机头301重定向
RewriteCond Host: ^monthzu\.com$
RewriteRule (.*) http\://www.\monthzu\.com$1 [R,I]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
# 以下是论坛URL静态目录
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
RewriteRule ^(.*)/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html(\?(.*))*$ $1/plugin\.php\?id=$23&$5
回复

使用道具 举报

 楼主| urs2 发表于 2012-3-5 15:27:33 | 显示全部楼层
venpeen 发表于 2012-3-5 15:06
我的是虚拟主机,我用的伪静态规则是:

不是我们的静态规则问题吗?

https://discuz.dismall.com/thread-2667566-1-1.html
回复

使用道具 举报

 楼主| urs2 发表于 2012-3-6 08:01:16 | 显示全部楼层
现在发现QQ好像登录不了。
回复

使用道具 举报

jianjian566 发表于 2012-3-6 08:18:17 | 显示全部楼层
老大 能不能转个阿帕奇的 服务器版啊 我不是虚拟的 没法用啊
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-16 12:09 , Processed in 0.039050 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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