Hello Folks,
I'm trying to stop a bot from crawling a site using the .htaccess file. The problem is that it's using the backslash character as its name. Grrr...
It's called: Unknown robot identified by bot\*
This generates an internal server error:
RewriteCond %{HTTP_USER_AGENT} ("Unknown robot identified by bot\*") [NC]
I tried, this, but it didn't help:
RewriteCond %{HTTP_USER_AGENT} ("Unknown robot identified by bot\\*") [NC]
Any thoughts?