Apache 配置局域网访问

来源:互联网 发布:软件项目实施流程图 编辑:程序博客网 时间:2024/04/28 16:32

配置文件夹的访问权限

<Directory />    AllowOverride none    Require all granted</Directory>

配置’${INSTALL_DIR}/www/’路径下文件的访问权限

<Directory "${INSTALL_DIR}/www/">    ....    Require all granted</Directory>

同文件上传相关

<Files ".ht*">    Require all denied</Files>

扩展功能权限

<Directory "${INSTALL_DIR}/cgi-bin">    AllowOverride None    Options None    Require all granted</Directory>
原创粉丝点击