大家好,又见面了,我是你们的朋友全栈君。
asp.net mvc的action返回值为HttpStatusCodeResult时的customErrors总是不起作用
(404和exception时的500,由于他们并非HttpStatusCodeResult类型的返回值,所以还能使用)
其解决办法如下:
1. 开启customErrors(为了保留原有的404、500等错误)
2. 开启httpErrors(为专门定制的statuscode)
3. 设置Global:Response.TrySkipIisCustomErrors = true;
<system.web>
<customErrors mode="On" defaultRedirect="~/Home/Error">
<error statusCode="404" redirect="~/Home/Error/404" />
<error statusCode="500" redirect="~/Home/Error/500" />
</customErrors>
</system.web>
<system.webServer>
<httpErrors errorMode="Custom" existingResponse="Auto" defaultResponseMode="ExecuteURL">
<error statusCode="420" path="/Home/Error/420" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
protected void Application_Error(object sender, EventArgs e)
{
Response.TrySkipIisCustomErrors = true;
Exception exc = Server.GetLastError();
if (exc is HttpUnhandledException)
{
Server.Transfer("Home/Error/500", true);
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/160217.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...