部署网站:500-内部服务器错误我正在尝试部署ASP.NET应用程序。我已经将站点部署到IIS,但是当使用浏览器访问它时,它会向我展示如下:服务器错误500-内部服务器错误。您正在寻找的资源有问题,无法显示。在摆弄web.config之后,我得到了:由于发生内部服务器错误,无法显示该页。如何才能看到服务器错误背后的实际问题?
3 回答
qq_笑_17
TA贡献1818条经验 获得超7个赞
在……上面 IIS 6
<configuration> <system.web> <customErrors mode="Off"/> <compilation debug="true"/> </system.web></configuration>
关于IIS 7
<configuration> <system.webServer> <httpErrors errorMode="Detailed" /> <asp scriptErrorSentToBrowser="true"/> </system.webServer> <system.web> <customErrors mode="Off"/> <compilation debug="true"/> </system.web></configuration>
- 3 回答
- 0 关注
- 1019 浏览
添加回答
举报
0/150
提交
取消