Our new website does not work in IE6 and honestly we wont make it work as its <1% of our traffic. I want to serve up a page that lives on the webserver that will be served up when a user comes to the site in IE6. What would be the best way to achieve this? It would be great if someone can provide a code snippet also.
I was able to get the redirect working by using this:
RewriteCond %{HTTP_USER_AGENT} MSIE\ 6
RewriteRule ^(.*)$ /general/notsupported.html [L,R]
However, i wanted to also mask the url so if someone comes in on http://www.example.com/uri/querystring it will stay there but serve up a page saying “Sorry” ie6 is not supported.
Thanks in advance!
Something like this should do it: