I really can't find a solution, can someone pleas tell me how to block the following specific user agent exactly via isapi rewrite 3.0
?
I want to block:
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0
Current solution, but doesn't work:
RewriteCond %{HTTP:User-Agent} ^Mozilla/5.0\ (Windows\ NT\ 6.1;\ WOW64;\ rv:28.0)\ Gecko/20100101\ Firefox/28.0 [NC]
RewriteRule .? - [F]
I tried so many ways but it doesn't seem to work...
Please help!