我已经将ASP.NET MVC部署到Azure,并且用户使用客户端证书登录。
在本地,如果用户未发送证书或证书无效,则网站会将用户重定向到/error/403端点。
但是在Azure上这是行不通的:用户没有重定向到/error/403,并且显示的页面始终是这样:
asp.net - 如何替换默认的Azure 403错误页面-LMLPHP

这是我在<system.webServer>节点内的Web.Config代码:

<httpErrors errorMode="Custom" existingResponse="Replace">
  <clear />
  <error statusCode="400" path="/error/400" responseMode="Redirect" />
  <error statusCode="404" path="/error/404" responseMode="Redirect" />
  <error statusCode="500" path="/error/500" responseMode="Redirect" />
  <error statusCode="501" path="/error/501" responseMode="Redirect" />
  <error statusCode="503" path="/error/503" responseMode="Redirect" />
</httpErrors>-->

我还尝试添加<httpErrors existingResponse="PassThrough" />或使用system.webServer节点将我的代码从system.web移到customErrors,但是似乎用户已被阻止,然后读取了web.config的。对于我尝试的每个更改,其行为均保持不变。

我该如何解决?谢谢

最佳答案

不幸的是,Azure目前不支持此功能。应用服务团队的反馈是此post中的最新信息。但是,通过讨论部署槽的post,有一种解决方法。

关于asp.net - 如何替换默认的Azure 403错误页面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44033784/

10-12 22:21