.Net MVC 自定义错误页面在 IIS8 中不起作用

2024-04-19

我有一个 .NET MVC 应用程序,在使用 IIS 8 的服务器上获取自定义错误页面时遇到问题。在我的应用程序中,我会适当地捕获和抛出异常,并在错误页面上显示一条自定义的消息他们的违规行为。当在调试中通过 VS 运行应用程序时,以及当我在 IIS (6.1) 中的本地主机上配置站点时,这一切都在本地工作得很好。

然后我将其部署到安装了 IIS 8 的服务器上。最初我得到了令人讨厌的默认 500 错误页面:默认500错误页面http://img202.imageshack.us/img202/1352/b8gr.png http://img202.imageshack.us/img202/1352/b8gr.png

经过一些研究后,我发现我可以将以下内容添加到 web.config 中,至少可以得到友好的错误页面,尽管没有自定义文本:

<system.webServer>
    <httpErrors errorMode="Detailed" />
</system.webServer>

我使用以下过滤器完成自定义错误消息:

public class GlobalExceptionFilter : FilterAttribute, IExceptionFilter
{
    public void OnException(ExceptionContext filterContext)
    {
        if (filterContext.HttpContext.IsCustomErrorEnabled && !filterContext.ExceptionHandled)
        {
            filterContext.ExceptionHandled = true;
            filterContext.HttpContext.Response.StatusCode = 500;
            string controllerName = (string)filterContext.RouteData.Values["controller"];
            string actionName = (string)filterContext.RouteData.Values["action"];
            HandleErrorInfo info = new HandleErrorInfo(filterContext.Exception, controllerName, actionName);

            IControllerFactory factory = ControllerBuilder.Current.GetControllerFactory();
            ErrorController newController = factory.CreateController(filterContext.RequestContext, "Error") as ErrorController;
            filterContext.RouteData.Values["controller"] = "Error";
            filterContext.Controller = newController;

            //Display specific error message for custom exception, otherwise generic message
            var model = new ErrorViewModel { Exception = info.Exception };
            if (info.Exception.GetType() == typeof(RchiveException) || info.Exception.GetType().IsSubclassOf(typeof(RchiveException)))
                model.Message = info.Exception.Message;
            else
                model.Message = "An error occurred processing your request.";
            filterContext.Controller.ViewData = new ViewDataDictionary(model);

            string actionToCall = "Index";
            if (filterContext.HttpContext.Request.IsAjaxRequest())
                actionToCall = "IndexAjax";

            filterContext.RouteData.Values["action"] = actionToCall;
            newController.ActionInvoker.InvokeAction(filterContext, actionToCall);
        }
    }
}

有任何想法吗?


我遇到了同样的问题,实际上通过将我的配置更改为:

<system.web>
    <customErrors mode="RemoteOnly">
      <error statusCode="404" redirect="/Error/E404" />
    </customErrors>
</system.web>

请将 /Error/E404 更改为您的自定义错误路径。然后我还补充道:

  <system.webServer>
    <httpErrors existingResponse="PassThrough" errorMode="Detailed"></httpErrors>
  </system.webServer>

我还通过 Plesk 做了一些更改,但我相信 httpErrors 行最终使其正常工作。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

.Net MVC 自定义错误页面在 IIS8 中不起作用 的相关文章

随机推荐