防止apche列出目录以及下载文件

1.修改httpd.conf,将override none改为override all

2.在需要设置权限的目录上传.htaccess文件,.htaccess文件内容如下:

 <FilesMatch ".(zip|htaccess|htpasswd|ini|sh|txt|log)$">
 Order Allow,Deny
 Deny from all
 </FilesMatch>
 Options -Indexes
 order deny,allow 

(说明:禁止下载含以上后缀名的文件)

上一篇:安装atlas后执行hive命令报错


下一篇:JS中字符串的true转化为boolean类型的true