如何阻止引荐来源的完整URL而不仅仅是域名

时间:2015-03-26 17:15:02

标签: apache .htaccess

我通过slowhttptest获得DDoS。我的access.log文件中的所有条目都将引用网址设为http://code.google.com/p/slowhttptest/。我想设置我的.htaccess来阻止使用该URL作为HTTP_REFERER的访问者。我能找到的一切都是如何阻止整个域,但我想阻止这个特定的URL。下面的代码是阻止域名,但是它会在RewriteCond中与code\.google\.com/p/slowhttptest一起使用吗?

RewriteCond %{HTTP_REFERER} example\.com [NC]
RewriteRule .* - [F]

1 个答案:

答案 0 :(得分:2)

只需将example\.com替换为/p/slowhttptest/

RewriteCond %{HTTP_REFERER} /p/slowhttptest/ [NC]
RewriteRule .* - [F]