“所有网站内容”中的权限页

发布于 2024-11-05 17:34:18 字数 92 浏览 0 评论 0原文

有没有办法拒绝访问 SharePoint 2007 中的“所有网站内容”页面? 我知道我可以隐藏列表和页面链接,但用户仍然可以通过 URL 访问

提前致谢

Is there a way to deny the access to the All Site Content" page in SharePoint 2007?
I know I can hide the lists and the link to the page, but users can still access via the URL

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫瑾少女 2024-11-12 17:34:18

您可以使用 ViewFormPagesLockDown 功能。

但最好的建议看到阻止所有用户的方法是修改web.config文件:

<location path="_layouts/viewlsts.aspx">
  <system.web>
    <authorization>
      <deny users="*" />
    </authorization>
  </system.web>
</location>

You can keep out anonymous users with the ViewFormPagesLockDown feature.

But the best suggestion I've seen for keeping out all users is to modify the web.config file:

<location path="_layouts/viewlsts.aspx">
  <system.web>
    <authorization>
      <deny users="*" />
    </authorization>
  </system.web>
</location>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文