Unfortunately, I haven't found any answer to my question in the web. How to make a user with IE see another html page (not index.html)?
You could use conditional tags together with meta redirect.
<!--[if IE]>
<meta http-equiv="refresh" content="0;url=/ie.html">
<![endif]-->
If you are running apache you could do this server-side through a .htaccess file:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_USER_AGENT} ^.*MSIE.*
RewriteRule ^index\.html$ ie.html [L]
The above will redirect clients using any flavor of IE to ie.html and all others to index.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With