将IE8用户重定向到另一个页面

Cat*_*ndu 4 javascript php wordpress conditional-comments internet-explorer-8

我正在使用Wordpress实现一个网站,但我的网站在Internet Explorer 8中不受支持.

有没有我可以使用的代码,以便任何IE8用户将被重定向到另一个页面?

Dan*_*ett 15

我知道你指定了PHP,但这是一个HTML/JS解决方案:

<!--[if IE]>
    <script type="text/javascript">
        window.location = "http://www.google.com/";
    </script>
<![endif]-->
Run Code Online (Sandbox Code Playgroud)

取自这个答案.

如果您特别只想重定向IE 8用户,请更改<!--[if IE]><!--[if IE 8]>.

  • <! - [if lte IE 8]>也是一个不错的选择. (5认同)