我想浏览器检测和控制。 尝试这种方式,它的工作原理:
<!--[if IE 8]>
<script type="text/javascript">
alert('hey');
</script>
<![endif]-->
但我想,如果该网站在IE8上打开,请获取custom.html页面。
我该怎么做?
答案 0 :(得分:0)
选项1.使用HTACCESS(这是我会做的事情):
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} "MSIE [8]" [NC]
RewriteRule ^(.*)$ http://domain/custom.html [R=301,L]
选项2.使用JavaScript:
<!--[if gte IE 8]>
<script type="text/javascript">
window.location.replace('link to custom.html goes here')
</script>
<![endif]-->