【码】Nginx禁止访问指定文件或者目录
in 技术 with 0 comment

【码】Nginx禁止访问指定文件或者目录

in 技术 with 0 comment

nginx禁止访问所有.开头的隐藏文件设置

location ~* /.* {
    deny all;
}

nginx禁止访问目录,例如:禁止访问path目录

location ^~ /path {
    deny all;
}

可以把path换成实际需要的目录,目录path后是否带有"/",带"/"只禁止访问目录,不带"/"禁止访问目录中的文件

特别鸣谢 @mood 本文摘录自 nginx禁止访问某个文件和目录(文件夹)

Comments are closed.