Permissions in "All Site Content" Page
Is there a way to deny the access to the All Site Content" page开发者_StackOverflow 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
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>
精彩评论