how can i write rewrite condition for wildcard user agents
here is the code I'm trying but doesnt work
RewriteCond %{HTTP_USER_AGENT} !*uTorrent* [NC]
RewriteCond %{HTTP_USER_AGENT} !*BitTorrent* [NC]
RewriteCond %{HTTP_USER_AGENT} !*Transmission* [NC]
The problem is user agents are in this format
uTorrent/12345
Bittorrent/2456
Transmission/"SomeRandomNumbers"
How can i write a proper (RewriteCond) Rewrite Condition ?