Hey :)
I am trying to redirect IE 6 users to a static page (namely upgrade.php in my site root), i have added the following code to my .htaccess file :
RewriteCond %{HTTP_USER_AGENT} "MSIE 6"
RewriteRule (.*) /upgrade.php [L,R=301]
the above code works and will forward visitors using IE 6 to the page, however i get an error "Too many redirects".
Any ideas?
Thx,
AB24