标签: regex nginx location
我有一个网站接收类似
http://domain.example.com/path/name?id=123456
我想通过ID删除一些请求。
我尝试了很多类似的事情
location ~* id\=123456 { deny all; return 403; }
在location /标记之前,但似乎没有任何作用。
location /
有什么想法吗?