I must redirect IE user to other website and from IE6 to IE9 this code working very good:
<!--[if IE]><script type="text/javascript">window.location = "google.com";</script><![endif]-->
This code working very good for IE 10:
<script type="text/javascript">if (navigator.appName == 'Microsoft Internet Explorer'){self.location = "google.com"}</script>
But I can't find any solution for IE11 - in this browser my website doesn't redirect.
Maybe you know how to write only one script to redirect all IE browsers to other website?