我已成功添加自定义 404 页面。我想要做的是创建另一个自定义错误页面,当出现 404 以外的任何错误时显示。例如 500、403 等。
这就是我现在在 webconfig 中所拥有的
<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" path="/404.aspx" responseMode="ExecuteURL"/>
</httpErrors>