首页 > 网站 > Nginx > 正文

Nginx 禁止访问某个目录或文件的设置方法

2024-08-30 12:24:04
字体:
来源:转载
供稿:网友

如果基于WEB根目录下,要禁止用户访问/config目录,或者要禁止用户访问/config.ini(ZF常用INI,不过建议还是放到WEB目录以外的地方),可以通过location进行配置,返回403或者404等


location = /config/ {
return 404;
}
location =/config.ini{
return 404;
}


这样只能禁止访问 http://www.VeVb.com/path/


location = /path/ {
return 404;
}


禁止访问 http://www.VeVb.com/path/test.php


location ^~ /test
{
deny all;
}


可能test要换成path.
这样就搞定了

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表