这可以将IE重定向到新页面,但我只想将IE11重定向到新页面。有什么想法吗?
<!--[if IE]>
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.com">
<![endif]-->
这是IE 11用户代理 - &gt; Mozilla / 5.0(IE 11.0; Windows NT 6.3; Trident / 7.0; .NET4.0E; .NET4.0C; rv:11.0),如Gecko
答案 0 :(得分:0)
在文档根目录中的htaccess中:
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} IE11 [NC]
RewriteRule ^ http://google.com/ [L,R]