Forum Moderators: phranque
Thus the following would be correct?
#deny UA with the exception of IP range
RewriteCond %{REMOTE_ADDR}!123\.456\.789\.
RewriteCond %{HTTP_USER_AGENT} keyword
RewriteRule .* - [F]
or
#deny UA with the exception of IP range
RewriteCond %{REMOTE_ADDR}!^123\.456\.789\.
RewriteCond %{HTTP_USER_AGENT} keyword
RewriteRule .* - [F]