1.多站点设置某一站点的目录权限(apache)
<VirtualHost *:80>
DocumentRoot "E:\web"
ServerName "www.test.com"
DirectoryIndex index.php index.html index.htm
<Directory "E:\web\要控制权限的目录">
Order Deny,Allow #Deny和Allow的先后顺序
Deny from all #禁止所有
</Directory>
</VirtualHost>
2.在httpd.conf里面设置127.0.0.1的目录权限
(apache)
在httpd.conf里面的<Directory /></Directory>闭合标签之后添加如下语句
<Directory "E:\web\要控制权限的目录">
Order Deny,Allow #Deny和Allow的先后顺序
Deny from all #禁止所有
</Directory>
3.nginx设置目录权限
在某站点的server里面加入如下语句
location /要控制权限的目录 {
deny all;
return 403;
}