自定义错误在本地工作,而不是在 IIS 上部署后
Custom Errors Work Locally Not Once Deployed On IIS
我有以下内容:
Web.config
<system.web>
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
<customErrors mode="On" defaultRedirect="~/Error/ShowError">
<error redirect="~/Error/ShowError/400" statusCode="400" />
<error redirect="~/Error/ShowError/401" statusCode="401" />
<error redirect="~/Error/ShowError/403" statusCode="403" />
<error redirect="~/Error/ShowError/404" statusCode="404" />
</customErrors>
</system.web>
ErrorController
[AllowAnonymous]
public class ErrorController : Controller
{
public ViewResult ShowError(int id)
{
Response.StatusCode = id;
switch (id)
{
case 400:
return View("~/Views/Error/400.cshtml");
case 401:
return View("~/Views/Error/401.cshtml");
case 403:
return View("~/Views/Error/403.cshtml");
case 404:
return View("~/Views/Error/404.cshtml");
default:
return View("~/Views/Error/404.cshtml");
}
}
}
FilterConfig
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
//filters.Add(new HandleErrorAttribute());
}
在本地一切正常,我得到一个自定义错误页面并且很高兴,但是一旦我将站点部署到我的网络服务器,我就不再收到自定义错误消息,只有通用的:
我是否需要在我的在线环境中添加任何特定于 IIS 配置的内容?
我已经将本地 Web.config
与部署的 Web.config
进行了比较,没有任何不同(我可以看到)。
您的错误已被 IIS 自定义错误覆盖。
尝试:
Response.TrySkipIisCustomErrors = true
我有以下内容:
Web.config
<system.web>
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
<customErrors mode="On" defaultRedirect="~/Error/ShowError">
<error redirect="~/Error/ShowError/400" statusCode="400" />
<error redirect="~/Error/ShowError/401" statusCode="401" />
<error redirect="~/Error/ShowError/403" statusCode="403" />
<error redirect="~/Error/ShowError/404" statusCode="404" />
</customErrors>
</system.web>
ErrorController
[AllowAnonymous]
public class ErrorController : Controller
{
public ViewResult ShowError(int id)
{
Response.StatusCode = id;
switch (id)
{
case 400:
return View("~/Views/Error/400.cshtml");
case 401:
return View("~/Views/Error/401.cshtml");
case 403:
return View("~/Views/Error/403.cshtml");
case 404:
return View("~/Views/Error/404.cshtml");
default:
return View("~/Views/Error/404.cshtml");
}
}
}
FilterConfig
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
//filters.Add(new HandleErrorAttribute());
}
在本地一切正常,我得到一个自定义错误页面并且很高兴,但是一旦我将站点部署到我的网络服务器,我就不再收到自定义错误消息,只有通用的:
我是否需要在我的在线环境中添加任何特定于 IIS 配置的内容?
我已经将本地 Web.config
与部署的 Web.config
进行了比较,没有任何不同(我可以看到)。
您的错误已被 IIS 自定义错误覆盖。
尝试:
Response.TrySkipIisCustomErrors = true