|
环境是win2008+IIS7.5。dz的版本是Discuz!X3.2。论坛安装在一个网站的二级目录。
要是用Apache的就好办一些,因为.htaccess是可以设置子目录的伪静态规则的,但是 在IIS7下,要使用webconfig配置文件来设置伪静态。百度一下也没找到满意的答案。大部分都是说直接复制后台的伪静态规则然后粘贴到根目录,也有说粘贴到二级目录的。甚至还有说iis7用 http.ini 文件的。
自己折腾的过程其实特别麻烦,特别容易出错。就不多说了。直接贴上 web.config 配置文件代码吧。
系统默认的伪静态规则是这么写的:
- <rule name="portal_topic">
- <match url="^(.*/)*topic-(.+).html\?*(.*)[ DISCUZ_CODE_0 ]quot; />
- <action type="Rewrite" url="{R:1}/portal.php\?mod=topic&topic={R:2}&{R:3}" />
- </rule>
复制代码 那么二级目录(根目录下/bbs)就修改为- <rule name="portal_topic">
- <match url="^(.*/)*bbs/topic-(.+).html\?*(.*)[ DISCUZ_CODE_1 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/portal.php\?mod=topic&topic={R:2}&{R:3}" />
- </rule>
复制代码 其实就是在topic这个是系统的文件目录前面加上一个你的二级目录文件夹路径bbs/(其他的改成自己相应的文件夹名即可),其他论坛文件目录的伪静态规则修改以此类推。
因为根目录下一句安装了一个WordPress网站。所以根目录下的配置文件会有WordPress的伪静态规则。
- <rule name="wordpress" patternSyntax="Wildcard">
- <match url="*"/>
- <conditions>
- <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
- <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
- </conditions>
- <action type="Rewrite" url="index.php"/>
- </rule>
复制代码 我使用的时候在WordPress规则下面继续添加rule的时候连根目录的WordPress网站都不能打开,一直报各种错误。暂时还不知道这个是什么原因。
但是调整dz的rule顺序,把规则写在WordPress规则上面的时候。根目录网站正常访问了,也实现了二级目录的dz论坛伪静态功能(前提是已经在dz论坛后台开启了相关的伪静态设置,并且配置好了url路径和所在的应用域名路径)。
我这边使用的时候论坛帖子内容页老是报错说“插件不存在或已关闭”。这个可能原因应该是配置forum_viewthread出现了一些错误。所以自己写的时候请不要出错。
这边给大家提供一个二级目录文件夹为bbs下的论坛伪静态规则配置文件:
- <?xml version="1.0" encoding="UTF-8"?>
- <configuration>
- <system.webServer>
- <rewrite>
- <rules>
- <rule name="portal_topic">
- <match url="^(.*/)*bbs/topic-(.+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/portal.php\?mod=topic&topic={R:2}&{R:3}" />
- </rule>
- <rule name="portal_article">
- <match url="^(.*/)*bbs/article-([0-9]+)-([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/portal.php\?mod=view&aid={R:2}&page={R:3}&{R:4}" />
- </rule>
- <rule name="forum_viewthread">
- <match url="^(.*/)*bbs/thread-([0-9]+)-([0-9]+)-([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/forum.php\?mod=viewthread&tid={R:2}&extra=page%3D{R:4}&page={R:3}&{R:5}" />
- </rule>
- <rule name="forum_forumdisplay">
- <match url="^(.*/)*bbs/forum-(\w+)-([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/forum.php\?mod=forumdisplay&fid={R:2}&page={R:3}&{R:4}" />
- </rule>
- <rule name="group_group">
- <match url="^(.*/)*bbs/group-([0-9]+)-([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/forum.php\?mod=group&fid={R:2}&page={R:3}&{R:4}" />
- </rule>
- <rule name="home_space">
- <match url="^(.*/)*bbs/space-(username|uid)-(.+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/home.php\?mod=space&{R:2}={R:3}&{R:4}" />
- </rule>
- <rule name="home_blog">
- <match url="^(.*/)*bbs/blog-([0-9]+)-([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/home.php\?mod=space&uid={R:2}&do=blog&id={R:3}&{R:4}" />
- </rule>
- <rule name="forum_archiver">
- <match url="^(.*/)*bbs/(fid|tid)-([0-9]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/index.php\?action={R:2}&value={R:3}&{R:4}" />
- </rule>
- <rule name="plugin">
- <match url="^(.*/)*bbs/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+).html\?*(.*)[ DISCUZ_CODE_3 ]quot; />
- <action type="Rewrite" url="{R:1}/bbs/plugin.php\?id={R:2}:{R:3}&{R:4}" />
- </rule>
- <rule name="wordpress" patternSyntax="Wildcard">
- <match url="*"/>
- <conditions>
- <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
- <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
- </conditions>
- <action type="Rewrite" url="index.php"/>
- </rule></rules>
- </rewrite>
- </system.webServer>
- </configuration>
复制代码 复制粘贴到web.config,再上传到根目录即可。具体文件名替换bbs即可。根目录其他网站程序的规则继续添加在dz伪静态规则下面。记得将配置文件 web.config文件放在根目录 。而且要删除掉二级目录网站下的web.config文件。如果参考以上说明还是解决不了,可以加飘仙qq群,飘仙可 协助操作
|
|