Forum Moderators: phranque
rewriteCond %{HTTP_user_agent} ^Mozilla/4\.[0-9]\ \(compatible\;\ MSIE
rewriteCond %{HTTP_user_agent} ^Mozilla/4\.[0-9]{1,2}\ \[en\]
rewriteRule ^(.*)$ /user/browser.html/$1 [R=301,L]
My idea is just to redirect to a different page if the user uses Netscape 4.xx (or older) or IE 4.xx (or older). Could the problem be the user agent is not passed when the domain is entered in the address bar?
RewriteCond %{HTTP_user_agent} ^Mozilla/4\.[0-9]\ \(compatible\;\ MSIE [b][OR][/b]
RewriteCond %{HTTP_user_agent} ^Mozilla/4\.[0-9]{1,2}\ \[en\]
RewriteRule ^(.*)$ /user/browser.html/$1 [R=301,L]
Jim