Forum Moderators: phranque
(ImageMobile|ImagePro|ImageSearcher) without the ^ before it. That would mean "UA contains". [OR] (which means "or"). [NC] (which means "No Case" or "Case insensitive" and adds a little bit of extra work for the server) where the [OR] is now. [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^ImageMobile [OR]
RewriteCond %{HTTP_USER_AGENT} ^ImagePro [OR]
RewriteCond %{HTTP_USER_AGENT} ^ImageSearcher [OR]
to this:
RewriteCond %{HTTP_USER_AGENT} =Image[Mobile|Pro|Searcher]