IIS 配置 浏览器 兼容模式
众所周知,微软的Internet Explorer团队一直在致力于将IE8打造为最符合业内标准的浏览器,所不幸的是,当前并非所有的网站都认同这些标准。如果你担心你的网站在IE8的标准模式下不能正常工作的话,下面这些方法也许对你有所帮助:
1. 你可以将你网站中所有的页面都加上下面这行meta标记头。
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
该标记可以让你网站的页面在IE8的兼容模式下运行,而无论用户是否设置了浏览器的兼容模式。对于一个网站中的页面来说,这也许是一个不错的解决方案!
2. 配置IIS,添加HTTP Header
该方法可以在不修改网站源代码的基础上非常便捷地实现网站在IE8中的兼容模式访问。当然,你也可以通过修改网站的config配置文件来实现这一点:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-UA-Compatible" value="IE=EmulateIE7">
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-UA-Compatible" value="IE=EmulateIE7">
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
3. 如果你的网站运行在Apache环境下,下面这篇文章详细介绍了如何进行配置。
有关更多IE8兼容模式的信息可以访问微软的官方网站:
http://msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />