在goddady plesk服务器上托管我的网站,当我的某个页面出现错误时,虽然我的根文件夹中有一个web.config文件但似乎没有详细显示。我不知道我的web.config是否存在问题。唯一的告诉我告诉我的是“您尝试访问的资源存在问题”
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
<asp scriptErrorSentToBrowser="true"/>
</system.webServer>
<system.web>
<customErrors mode="Off"/>
<compilation debug="true"/>
</system.web>
</configuration>
答案 0 :(得分:2)
这适用于Fasthosts(英国)共享托管:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
</system.webServer>
</configuration>
它往往会给我提供经典ASP开发所需的详细错误。记得在网站上线时将其关闭。