IIS显示服务器错误而不是自定义错误

时间:2014-10-19 05:59:56

标签: asp.net-mvc iis server-error

我正在使用MVC 5,我正在使用自定义视图处理我的错误,例如(404,403 ..等) 它在我的本地IIS上运行正常,但是当我在登台服务器上发布时,它会显示有关这些错误代码的IIS服务器错误消息。

显示此消息:

Showing this message

代替:

instead of this

我修改了web.config

<customErrors mode="Off" />

Global.asax中

        if ((Context.Server.GetLastError() is UnauthorizedAccessException))
        {
            log.LogError(Context.Server.GetLastError().Message, Context.Server.GetLastError());
            customErrorPage = @"~/Error/?id=403"; //security
        }
        else if ((Context.Server.GetLastError() is HttpException) && (((HttpException)Context.Server.GetLastError()).GetHttpCode() == 404))
        {
            //** Handle 404 error and response code
            log.LogError("404", Context.Server.GetLastError());
            customErrorPage = @"~/Error/?id=404";
        }
        else
        {
            log.LogError(Context.Server.GetLastError().Message, Context.Server.GetLastError());
            customErrorPage = @"~/Error";
        }

        if (ConfigurationHelper.Common.ShowCustomErrorPage)
        {
            var urlHelper = new UrlHelper(HttpContext.Current.Request.RequestContext);
            Response.Redirect(urlHelper.Content(customErrorPage), false);
            Server.ClearError();
        }

错误控制器:

    public ActionResult Index(string id)
    {
        if (!string.IsNullOrEmpty(id) && id.Equals("404"))
        {
            Response.StatusCode = 404;
            return !Request.IsAjaxRequest() ? (ActionResult)View("404") : PartialView("404");
        }
        if (!string.IsNullOrEmpty(id) && id.ToLower().Equals("403"))
        {
            Response.StatusCode = 403;
            return !Request.IsAjaxRequest() ? (ActionResult)View("Security") : PartialView("Security");
        }
        return !Request.IsAjaxRequest() ? (ActionResult)View("Index") : PartialView("Index");
    }

我应该怎么做以显示我的自定义错误消息?

2 个答案:

答案 0 :(得分:9)

只需添加以下web.config配置即可通过IIS默认错误处理行为

<configuration>
    <system.webServer>
        <httpErrors existingResponse="PassThrough" />
    </system.webServer>
</configuration>

答案 1 :(得分:1)

尝试使用

Response.TrySkipIisCustomErrors = true;

在你的控制器上。 它比

更好
<httpErrors existingResponse="PassThrough" />

因为PassThrough可能会导致一些你不会总是期待的结果。例如,如果模块没有设置任何文本,请阅读here如何使自定义错误模块返回空白响应。