我使用了以下powershell说明来更新sharepoint门户中的自定义AccessDenied页面:
$site = get-spsite "http://sure-intra:5566"
$webApp =$site.WebApplication
$webapp.UpdateMappedPage(1,"/_layouts/MyProject/AccessDenied.aspx")
$webapp.Update()
我收到了以下错误:
此错误(HTTP 403 Forbidden)
我能够连接到该网站,但我无权查看该网页。
这个问题的解决方案是什么?