我正在使用nginx-1.6.2,2
,并且希望返回error 410
匹配的 URL /browse.php?u=http
,因此诸如此类的请求将得到 410:
162.218.208.16 - - [21/Nov/2014:12:35:40 -0500] "GET /browse.php?u=http%3A%2F%2Fwww.bing.com%2Fsearch%3Fq%3DBroke%2C%2BUSA%2Bfiletype%3Apdf%26first%3D0%26count%3D20%26format%3Drss&b=156&f=norefer HTTP/1.1" 403 570 "http://ww.thespacesurf.com/browse.php?u=http%3A%2F%2Fwww.bing.com%2Fsearch%3Fq%3DBroke%2C%2BUSA%2Bfiletype%3Apdf%26first%3D0%26count%3D20%26format%3Drss&b=156&f=norefer" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)"
我真的不需要regex
,所以像这样的东西,但它不起作用:
location = /browse.php?u=http {
return 410;
}
几天后,grep -c
我410
/var/log/nginx-access.log
$ bzip2 -cd /var/log/nginx-access.log.0.bz2 | grep -c ' 410 '
5665
$
这让我感觉很温暖)再次感谢!
答案1
这是因为位置是/browse.php
,而不是您指定的位置。
有几种方法可以做到这一点。例如,应该这样做:
location = /browse.php {
if ($query_string ~ ^u=http) {
return 410;
}
}
PS:如果不区分大小写,请使用或~*
而不是。~
u=http
答案2
您无法匹配位置语句声明中的查询字符串,因此您需要如下内容:
location = /browse.php {
if ($arg_u ~ "^http") {
return 410;
}
}