欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET MVC自定义错误页面真的简单吗?

程序员文章站 2023-11-27 21:06:52
如果你在设置asp.net mvc自定义错误页面时遇到问题,这并不止你一个人。惊讶之余你的做法是正确的,没有起到作用的原因是其一部分错误是由asp.net管道处理的,另一部...

如果你在设置asp.net mvc自定义错误页面时遇到问题,这并不止你一个人。惊讶之余你的做法是正确的,没有起到作用的原因是其一部分错误是由asp.net管道处理的,另一部分是由iis直接处理。

通常情况 (我期望是这种情况,在一些其他框架/服务器上) 我们只需要在一个地方配置自定义错误页就可以了,无论怎么哪儿引发的错误。就像这样︰

<customerrors mode="on">
  <error code="404" path="404.html" />
  <error code="500" path="500.html" />
</customerrors>

自定义404错误页面

当一个资源不存在时(包含静态和动态),我们需要返回一个404状态的页面,通常我们需要提供一些稍微友好的信息替代asp.net/iis生成的默认错误页呈现给我们的网站访问者,可能是提出一些忠告 为什么该资源可能不存在或提供选择要搜索的网站。

这里仅作演示简单设置如下:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8"/>
  <title>404 page not found</title>
</head>
<body>
  <h1>404 page not found</h1>
</body>
</html>

我创建了一个新的asp.net mvc 5应用程序,包含vs自带的标准模版。如果我运行它尝试导航到一个不存在的路径 e.g. /foo/bar,就会得到一个包含如下信息的标准 asp.net 404 页面:、

ASP.NET MVC自定义错误页面真的简单吗?

不太友好不是?

这种情况的错误是由asp.net mvc引发因为它没有找到与url相匹配的controller或action。

为了自定义404错误页面,在web.config 的 <system.web></system.web>配置节:

<customerrors mode="on">
 <error statuscode="404" redirect="~/404.html"/>
</customerrors> 

mode="on" 这样我们就能在本地看到错误页面。一般你可能只想在投入使用时呈现而设置为 mode="remoteonly"。

现在如果我再次导航到/foo/bar 就能看到我刚刚定义的错误页面.

然而正如我所料,此时的url路径并不是 /foo/bar asp.net 将其重定向为/404.html?aspxerrorpath=/foo/bar,而且我检查响应的http状态码也为正常状态的200。

这是非常糟糕的,返回http code 200不仅会引起误解,也不利于seo。简单来讲,如果指定路径的资源不存在应该返回404如果是资源被移动应该重定向到新路径。

要修复这个问题我们可以更改asp.net默认行为 重定向错误页 为 重写返回(rewrite the response)。

<customerrors mode="on" redirectmode="responserewrite">
 <error statuscode="404" redirect="~/404.html"/>
</customerrors>

然而这并没有太大的作用(这老外真啰嗦).尽管原url地址没有被重定向, asp.net 仍然返回的是 200,此外将我们自定义错误页显示为纯文本。 

似乎我们不得不返回一个asp.net页面. 如果你之前以为不用再去 *.aspx页面的话,那我恐怕让你失望了。

因此将错误页及相应的web.config改为404.aspx之后,url和content type(text/html)都正常了。

但200的问题依然存在. 这个问题微软官方给出了相应的解决方案——设置页面的状态码. 我们在404.aspx加入如下部分:

<% response.statuscode = 404 %>

我们现在得到了正确的状态码、url及自定义错误页面,就这样完事儿了吗?

 错.

 如果我们链接到一个静态页路径(e.g. foo.html) 或一个不匹配我们路由配置的url (e.g. /foo/bar/foo/bar),我们会看到到一个标准的iis 404错误页面.

 上述情况绕过了asp.net由iis处理了请求. 当然如果你在controller ation 中 return一个httpnotfound()也会得到同样的结果——这是因为mvc只是简单的设置status code并没有抛出错误,而是将它交给了iis.

 这种情况我们需要设置iis的错误页面(仅iis 7+有效).在 web.config <system.webserver></system.webserver>配置节中:

<httperrors errormode="custom">
 <remove statuscode="404"/>
 <error statuscode="404" path="/404.html" responsemode="executeurl"/>
</httperrors>

同样设置 errormode="custom" 以便本地测试. 正常情况会设置为 errormode="detailedlocalonly".

注意我使用了html页面,而不是aspx。通常你应该用简单的静态文件作为错误页面,这样即使asp.net出现错误时错误页面依然能够正常显示。

现在如果我们导航到一个不存在的静态文件路径就会得到一个自定义错误页面而不是iis默认的404 page,剩下的还是和之前一样的200问题。

幸运的是 iis 实际上提供了内置的解决方案来解决这一点,如果你设置 responsemode ="file"iis 将返回您的自定义错误页面,而不改变原始的响应标头︰
<error statuscode="404" path="404.html" responsemode="file"/>
搞定。

自定义500错误页

 大部分无外乎照搬上面的解决方法,添加一个自定义的500错误页面。这里有几点值得注意的地方。

 标准的 asp.net mvc模板内置的 handleerrorattribute 作为一个全局过滤器。捕获在asp.net mvc管道引发的任何错误,并返回一个自定义"错误"视图提供你有在web.config中启用自定义错误。它会寻找 ~/views/{controllername}/error.cshtml 或 ~ / views/shared/error.cshtml。

如果你使用了过滤器(filter),你需要更新现有的自定义错误视图,并不存在的则需要创建(最好放在views/shared文件夹下)

我没有看见这个filter有可以设置的属性值,在 mvc 管道引发的任何异常都会退回到标准的 asp.net 错误配置页面,既然你要设置那些**那这里就用不到这个filter。

添加如下自定义错误页配置:

<customerrors mode="on" redirectmode="responserewrite">
 <error statuscode="404" redirect="~/404.aspx"/>
 <error statuscode="500" redirect="~/500.aspx"/>
</customerrors>

类似于前面创建的404.aspx:

<% response.statuscode = 500 %>
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>500 server error</title>
</head>
<body>
  <h1>500 server error</h1>
</body>
</html>

 不幸的是这样做并不会捕获到你应用程序中的每一个异常。一个相当常见的错误——由 asp.net 产生的请求的验证,如一个危险的url路径/foo/bar<script></script> ,这个实际上会产生一个404响应;因此你可以添加一个默认错误配置:

<customerrors mode="off" redirectmode="responserewrite" defaultredirect="~/500.aspx">
 <error statuscode="404" redirect="~/404.aspx"/>
 <error statuscode="500" redirect="~/500.aspx"/>
</customerrors>

 最后为了捕获非asp.net异常我们设置iis自定义服务器内部错误500错误页面:

<error statuscode="500" path="500.html" responsemode="file"/>

 总结

在你的应用程序根目录创建如下错误页面:

404.html - for iis
404.aspx - for asp.net
500.html - for iis
500.aspx - for asp.net

确认您设置在 aspx 页面内的适当响应状态码.

抛弃 mvc handleerrorattribute 全局筛选器;配置 asp.net 的自定义错误:

<customerrors mode="remoteonly" redirectmode="responserewrite" defaultredirect="~/500.aspx">
 <error statuscode="404" redirect="~/404.aspx"/>
 <error statuscode="500" redirect="~/500.aspx"/>
</customerrors>

配置iis自定义错误页:

<httperrors errormode="detailedlocalonly">
 <remove statuscode="404"/>
 <error statuscode="404" path="404.html" responsemode="file"/>
 <remove statuscode="500"/>
 <error statuscode="500" path="500.html" responsemode="file"/>
</httperrors>

原文链接:http://benfoster.io/blog/aspnet-mvc-custom-error-pages

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。