通过查询参数过滤Nginx中的请求

时间:2018-07-19 17:52:49

标签: regex nginx location

我有一个网站接收类似

的请求
http://domain.example.com/path/name?id=123456

我想通过ID删除一些请求。

我尝试了很多类似的事情

location ~* id\=123456 {
    deny all;
    return 403;
}

location /标记之前,但似乎没有任何作用。

有什么想法吗?

0 个答案:

没有答案