1.屏蔽文件名后缀
location ~* \.(html|htm|asa|asp)$ {
deny all;
}
2.屏蔽指定目录下的文件名后缀
location ~ ^/include/.*\.(txt|py|html)$
{
deny all;
}
1.屏蔽文件名后缀
location ~* \.(html|htm|asa|asp)$ {
deny all;
}
2.屏蔽指定目录下的文件名后缀
location ~ ^/include/.*\.(txt|py|html)$
{
deny all;
}
评论