21

如果这很明显,我深表歉意,但我已经四处寻找,无法找到答案。

.net Web.config文件中,谁能告诉我subStatusCodeto - 1 的设置是什么?

<httpErrors errorMode="Custom" existingResponse="Replace">
      <clear />
      <remove statusCode="404" subStatusCode="-1" />
      <error statusCode="404" prefixLanguageFilePath="" path="/Error.aspx" responseMode="ExecuteURL" />
</httpErrors>

我的猜测是这意味着所有的“子”代码,404.1、404.2..等?

4

1 回答 1

13

subStatusCode-1 是IIS中的默认值

也就是说,您在这里删除了元素,所以它只是重申显而易见的(删除所有先前的条目statusCode)。

在这种情况下(使用remove元素),不需要它。

于 2012-08-15T16:25:37.653 回答