我已经在我的应用程序中配置了 owinrole-based
授权MVC
。然后,我需要添加一个自定义处理403
http 错误
我知道两种方法:
Web.config
设置:<customErrors mode="Off" defaultRedirect="~/Error/" redirectMode="ResponseRedirect"> <error statusCode="403" redirect="~/Error/NoAccess" /> </customErrors>
属性中重写
HandleUnauthorizedRequest
方法内部的配置:Authorize
if (filterContext.HttpContext.User?.Identity.IsAuthenticated ?? false) { filterContext.Result = new RedirectToRouteResult( new RouteValueDictionary { {"action", "NoAccess"}, {"controller", "Error"} }); //I've tried two variants of below: with below line as well as without it filterContext.Result.ExecuteResult(filterContext.Controller.ControllerContext); }
当我尝试访问我的用户不允许的资源并且我看到我的自定义页面403
出错时,这两种方法在我的本地机器上都运行良好,但是当我在门户上部署我的应用程序时azure
,我只看到带有以下文本:“您无权查看此目录或页面。” . 据我所知,我需要在 azure 门户上配置此行为,并在我的代码中对其进行配置。
有人可以建议吗?