如果客户端用户使用Internet Explorer,如何显示另一页?

时间:2011-08-26 15:33:59

标签: php html internet-explorer

  

可能重复:
  Browser Detection
  How to make detection script , if detect old ie and redirect to another page?

我想知道如果用户使用的是Internet Explorer,是否可以显示另一个页面?

是否可以在HTML中?如果我需要php,请给我一些代码。

2 个答案:

答案 0 :(得分:5)

将它放在HEAD标签内。

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

答案 1 :(得分:0)

使用Javascript或方法库“JQuery”,检测浏览器用户代理,如果是IE则加载其他页面。请注意,某些浏览器(如Firefox或Opera)可能伪装成IE。