当前位置: 代码迷 >> 综合 >> Apache2.4访问权限设置
  详细解决方案

Apache2.4访问权限设置

热度:50   发布时间:2023-12-02 01:58:54.0

Require all granted #允许所有来源访问

Require all denied #拒绝所有来源访问

Require local          #仅允许本地访问

Require ip 192.168.1.xxx 192.168.1.xxx  #仅上述ip能够访问 每个ip空格隔开

Require host xxx.com  #仅允许xxx.com域名主机访问

 

例如:

<Directory "D:/test/Apache2.4/Apache24/htdocs">
    Require all granted
    AllowOverride All
    Options Indexes FollowSymLinks
</Directory>

表示 D:/test/Apache2.4/Apache24/htdocs 文件夹下的文件能够被所有人访问。


<Directory "D:/test/Apache2.4/Apache24/htdocs/test">
    Require all denied
    AllowOverride All
    Options Indexes FollowSymLinks
</Directory>

表示 D:/test/Apache2.4/Apache24/htdocs 文件夹下的test文件不能够被任何人访问。


<Directory "D:/test/Apache2.4/Apache24/htdocs/test2">
    Require local
    AllowOverride All
    Options Indexes FollowSymLinks
</Directory>

表示 D:/test/Apache2.4/Apache24/htdocs 文件夹下的test2文件仅能被本地访问。

  相关解决方案