任何IIS错误页面或ASP.net错误页面都无法处理503服务不可用

时间:2014-12-18 09:06:59

标签: asp.net iis-7.5

当我的错误代码为503但我没有重定向时,我正在尝试自定义错误。对于其他代码,它的工作正常。但是,当我停止应用程序池时,我得到503服务不可用错误页面。我想重定向我的自定义错误页面。我尝试了ASP.NET错误页面和IIS错误页面。它适用于所有其他错误代码。

 <httpErrors errorMode="Custom" existingResponse="Replace">
  <remove statusCode="404" subStatusCode="-1" />
  <remove statusCode="503" subStatusCode="-1" />
  <error statusCode="503" prefixLanguageFilePath="" path="http://www.google.com" responseMode="Redirect" />
  <error statusCode="404" prefixLanguageFilePath="" path="http://www.google.com" responseMode="Redirect" />
</httpErrors>

1 个答案:

答案 0 :(得分:2)

您无法为503自定义错误页面,因为它因APP池崩溃而发生Check Here