MVC3 自定义错误页面在开发中工作,而不是在服务器上工作
我正在使用SO问题中详细介绍的解决方案。我之前在其他网站上使用过它,效果很好,而且它也适用于我的开发盒。但是,当我发布到我们的 Windows VPS 时,错误会返回标准 IIS 错误页面。
我以前从未管理过网络服务器,并且我不确定需要检查哪些设置才能弄清楚为什么它不返回我设置的自定义错误。我尝试将应用程序的 .net 错误页面设置为关闭和打开,并将默认页面设置为根站点,以及“/”。
我还尝试将错误页面(7.5 中的 iis 下)设置为自定义和详细。
这些似乎都对返回的错误页面没有任何影响。我在这里做错了什么?
I am using the solution detailed in this SO Question. I've used this on other sites before and its worked fine, and it works on my dev box. However, when I publish to a our Windows VPS, errors return the standard IIS error page.
I have never administered a web server before, and I am not sure what settings I need to check to figure out why its not returning the custom errors I have set up. I have tried setting .net error pages for the app to off and on, with the default page set to the root site, as well as just '/'.
I have also tried setting the error pages (under iis in 7.5) to custom and detailed.
None of these seem to have any effect on the error page that is returned. What am I doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我记得有类似的问题,我将这一行添加到代码中
I remember having similar problem and I added this line to the code
您可以使用 web.config 文件中 system.webServer 部分中的 httpErrors 部分来替换标准 IIS 错误页面。这是对 system.web 中的 customErrors 部分的补充。
You can replace the standard IIS error pages by using the httpErrors section in the system.webServer section in your web.config file. This is in addition to the customErrors section in system.web.