0

我有 asp.net Web 应用程序并尝试为Dynamic Ip Restrictions 模块指定自定义 HTML ,该模块在 .net 代码之前返回 401。

我在 web.config 中添加了以下内容:

<httpErrors>
  <remove statusCode="404" subStatusCode="-1" />
  <remove statusCode="401" subStatusCode="-1" />
  <error statusCode="401" path="ddos.html" responseMode="File" />
  <error statusCode="401" subStatusCode="502" path="ddos.html" responseMode="File" />
  <error statusCode="404" prefixLanguageFilePath="" path="/404" responseMode="ExecuteURL" />
</httpErrors>

生产环境(Windows Server 2008):带有 404 和 401 的页面工作正常,但异常处理被破坏 - 我看到内置的 iis“红色”页面而不是自定义页面。

开发环境(windows 7/8):404 和错误都可以,但是 401 将用户重定向到登录页面。

异常处理定义为:

[HandleError(View = "Error", Master = "~/Views/Shared/_ThreeColumnsLayout.cshtml")]

UPD1:另外,我可以补充一点,如果我删除代码为 500 的页面,我会看到以下纯文本消息:

The page cannot be displayed because an internal server error has occurred.
4

1 回答 1

0
<httpErrors existingResponse="Auto">

成功了

于 2013-01-22T14:31:21.307 回答