Quote:
Originally posted by Adult Site Traffic
Does anyone have a good current downloaders list ?
and..
How can I redirect (not stop) downloaders?
I have this now:
Code:
###STOP ROBOT DOWNLOADERS - BEGIN
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_USER_AGENT} ^JetCar.* [NC]
...
...
...
RewriteCond %{HTTP_USER_AGENT} ^InternetNinja.* [NC,OR]
RewriteRule .* - [F,L]
###STOP ROBOT DOWNLOADERS - END
Thank you,
AST
|
To redirect, change the last line ("RewriteRule .* - [F,L]") to:
RewriteRule .*
http://go-here.com/index.html [L]