Quote:
Originally Posted by GrouchyAdmin
This (fixed) code will redirect anyone who has 'zango' in their User-Agent, and sends a 302 which tells the browser to basically continue to using the original URL. This won't break bookmarks.
|
Actually, trying to be up to date as possible
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} zango|seekmo|hbtools|hotbar [NC]
RewriteRule .* http://www.YOUR_URL_HERE.com/zango_sucks_ass/ [R=302,L]
</IfModule>