我通过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]
答案 0 :(得分:2)
只需将example\.com
替换为/p/slowhttptest/
:
RewriteCond %{HTTP_REFERER} /p/slowhttptest/ [NC]
RewriteRule .* - [F]