当我的错误代码为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>