|
alrighty.
the surfers with adblockers can be redirected with mod rewrite with this code;
# block offline browsers
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^Offline* [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZIP* [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebReaper* [OR]
RewriteCond %{HTTP_USER_AGENT} ^Anarchie* [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mass\ Down* [OR]
RewriteCond %{HTTP_USER_AGENT} ^Slurp* [OR]
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow* [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebStripper* [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget* [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebHook* [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport*
# adblocking software
RewriteCond %{HTTP_USER_AGENT} ^.*Ad.*Muncher.*v4.*.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*NetCaptor.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*WebWasher.* [NC]
RewriteCond %{HTTP_USER_AGENT} ^.*adsubtract.*$ [NC,OR]
# Send leeches to denied page
RewriteRule ^.*$ /docs/robots_denied.html [L]
now, the main thing is that pesky thief called toolbars!! i'm off to look for a way to disable it when visitors go to my sites..
|