问题描述
如何将当前页面重定向到** IE11 **中的新页面?
这是我到目前为止所获得的,但它没有工作。
How to redirect the current page to a new page in **IE11** ?
This is what I have got so far, but it didn't work.
<!--[if IE]>
<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.domain.com">
<![endif]-->
------
这个htaccess IE11重定向也不起作用 - >
------
This htaccess IE11 redirect doesnt work either-->
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} IE11 [NC]
RewriteRule ^ http://google.com/ [L,R]
------
这是IE11的用户代理,因此我需要使用这些用户代理重定向访问者 - >
Mozilla / 5.0 (IE 11.0; Windows NT 6.3; Trident / 7.0; .NET4.0E; .NET4.0C; rv:11.0)像Gecko
如何重定向IE11访问者?有什么想法吗?
我的尝试:
我是尝试上面的代码,但IE11访问者继续在同一网站,而不是被重定向到选定的域。 :(
------
This is the user agent of IE11, so I need to redirect visitors with these user agents-->
Mozilla/5.0 (IE 11.0; Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C; rv:11.0) like Gecko
How do I redirect IE11 visitors? Any ideas?
What I have tried:
I've tried above code, but IE11 visitors continue to the same site instead of being redirected to the chosen domain. :(
推荐答案
if ( Modernizr.canvas ) { // browser supports canvas
drawCanvas();
} else {
// relocate to an error page
// or
drawImageFromServer();
}
这篇关于如何将** IE11 **重定向到新页面?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!