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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] dz3.4设置伪静态后,首页500访问错误

[复制链接]
geili 发表于 2019-12-29 23:19:34 | 显示全部楼层 |阅读模式
本帖最后由 geili 于 2019-12-30 01:36 编辑



应该是对应
IIS7 Web Server(独立主机用户)在后台SEO设置生成了规则,做成web.config如下,上传至论坛同目录下
但打开首页就出现HTTP ERROR 500  
只有首页错误,访问后台admin.php一切正常,后台清除了缓存也不行
首页用fourm.php 或index.php访问仍然不行!!!


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>


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




    </system.webServer>
</configuration>
------------------
如果将以上内容,修改为以下内容(这个是升级dz后自动生成的),则一切都正常,但就是没有伪静态效果。我用的是香港的虚拟主机,问了空间商,他们就是说支持伪静态,请教一下,怎么解决?一定要伪静态啊,之前我的论坛被百度收录的都是伪静态

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <remove name="PHP-7.2-7i24.com" />
            <remove name="PHP-7.1-7i24.com" />
            <remove name="PHP-7.0-7i24.com" />
            <remove name="PHP-5.6-7i24.com" />
            <remove name="PHP-5.5-7i24.com" />
            <remove name="PHP-5.4-7i24.com" />
            <remove name="PHP-5.3-7i24.com" />
            <remove name="PHP-5.2-7i24.com" />
            <add name="PHP-7.2-7i24.com" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="c:\php\7.2\php-cgi.exe" resourceType="Either" />
        </handlers>
    </system.webServer>
</configuration>




本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
tvropc 发表于 2020-1-1 09:34:22 | 显示全部楼层
你服务器iis什么版本的,iis7以上用上面这个没有问题的,我就是8.5的
回复

使用道具 举报

理想很遥远 发表于 2020-1-4 20:36:30 | 显示全部楼层
我也是 用的宝塔 iis7.5  伪静态后 只要 根目录里放了 web.config文件就提示500
回复

使用道具 举报

crx349 发表于 2020-1-4 23:28:13 | 显示全部楼层
用的是虚拟空间吗 最好问下 是用web.config 还是 .htaccess
回复

使用道具 举报

摔迷之家米豆 发表于 2020-2-20 13:24:37 | 显示全部楼层
升级3.4最新版本后,同样的问题,我也有伪静态,首页,帖子都不能访问,后台一切正常~
回复

使用道具 举报

摔迷之家米豆 发表于 2020-2-20 14:08:06 | 显示全部楼层
500错误解决了吗、我同样问题,求大神支招!
回复

使用道具 举报

xiaoyuwxz 发表于 2020-2-20 16:20:26 | 显示全部楼层
你要问下空间商,规则的加载方式,
有的是在面板中加载iis6的规则,有些是在web.config中加载iis7的规则,要看空间支持哪一种。
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-25 05:43 , Processed in 0.029173 second(s), 5 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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