如果您RemoteOnly
在 Web 配置中设置了自定义错误 - 这是否意味着 MVC 的应用程序级错误事件global.asax
-Application_Error
不会因错误而触发?
我刚刚注意到,当我的应用程序中发生某个错误并且我正在远程查看该站点时,不会记录任何错误。但是,当我访问服务器上的应用程序并发生相同的错误时,会记录该错误。
这是自定义错误配置设置:
<customErrors defaultRedirect="/Error/Application" mode="RemoteOnly">
<error statusCode="403" redirect="/error/forbidden"/>
<error statusCode="404" redirect="/error/notfound"/>
<error statusCode="500" redirect="/error/application"/>
</customErrors>
编辑
只是出于对人们的兴趣-我最终完全关闭了自定义错误并Application_Error
像这样处理重定向:
protected void Application_Error(object sender, EventArgs e)
{
Exception exception = Server.GetLastError();
// ... log error here
var httpEx = exception as HttpException;
if (httpEx != null && httpEx.GetHttpCode() == 403)
{
Response.Redirect("/youraccount/error/forbidden", true);
}
else if (httpEx != null && httpEx.GetHttpCode() == 404)
{
Response.Redirect("/youraccount/error/notfound", true);
}
else
{
Response.Redirect("/youraccount/error/application", true);
}
}