将Apache命令转换为nginx(FilesMatch)

时间:2017-04-11 12:44:44

标签: apache nginx code-conversion

如何阻止通过浏览器查看某些类型的文件以配置Nginx?

<FilesMatch "\.(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

1 个答案:

答案 0 :(得分:0)

这是NginX版本:

location ~ \.(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$ {
  deny all;
}