Forum Moderators: phranque
I use just such a technique to internally redirect poorly-implemented robots to an alternate robots.txt file on my sites.
# Redirect some robots to simplified robots.txt file
RewriteCond %{HTTP_USER_AGENT} ^(NationalSpider¦Scatter/¦TeraBot/¦LinkTrekker$)
RewriteRule ^robots\.txt$ /robots_alt.txt [L]
Replace all broken pipe "¦" characters above with the solid pipe character from your keyboard.
Jim