重定向IE6用户

时间:2011-01-04 16:59:10

标签: internet-explorer-6 redirect

我正在搜索IE6代码,该代码会将用户从我们全新的网页重定向到旧版本。

例如这些内容

<!--[if lte IE6]>
<a href="http://etterengineering.com">
<![endif]-->

谢谢!

2 个答案:

答案 0 :(得分:8)

  <!--[if lte IE 6]>
  <meta http-equiv="refresh" content="0;url=http://example.com/" />
  <![endif]-->

将它放在页面的头部并将URl更改为正确的URl。即使用户已禁用JS,这也会起作用。

请注意,由于某些相关的缺点,不鼓励元刷新,但为了您的目的应该足够好。

另一种方法是为IE6用户代理返回HTTP 302。

答案 1 :(得分:0)

试试这个:

<!--[if lte IE6]>
<script type="text/javascript">
    window.location.href = "http://etterengineering.com";
</script>
<![endif]-->