1.修改httpd.conf,将override none改为override all
2.在需要设置权限的目录上传.htaccess文件,.htaccess文件内容如下:
1 <FilesMatch ".(zip|htaccess|htpasswd|ini|sh|txt|log)$"> 2 Order Allow,Deny 3 Deny from all 4 </FilesMatch> 5 Options -Indexes 6 order deny,allow
(说明:禁止下载含以上后缀名的文件)