1
votes

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

1

1 Answers

0
votes

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>