如何阻止通过浏览器查看某些类型的文件以配置Nginx?
<FilesMatch "\.(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$">
Order Allow,Deny
Deny from all
</FilesMatch>
答案 0 :(得分:0)
这是NginX版本:
location ~ \.(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$ {
deny all;
}