#this one is to store on your domain where to trap bots

#start rewrite-action
RewriteEngine On
RewriteBase  /

#here you should add your badbots expressions
RewriteCond %{HTTP_USER_AGENT} badbot1 [NC,OR]
RewriteCond %{HTTP_USER_AGENT} badbot2 [NC]

#trigger rewrite
RewriteRule ^.*$ http://www.your-bottrap-domain-where-bots-feel-free.tld/ [L,R=301]
