我可以设置此标题
X-UA-Compatible "IE=EmulateIE7"
在我的Apache 2.0 httpd.conf文件中使用以下指令:
<Location /mypath>
Header set X-UA-Compatible "IE=EmulateIE7"
</Location>
如何将Apache配置为仅为IE 8浏览器设置此标头?
答案 0 :(得分:3)
这是迄今为止我能想到的最好的。 似乎可以工作。如果有人有更好的方法,请告诉我。
BrowserMatch "^.*MSIE 8.*$" emulate_ie7
<Location /mypath>
Header set X-UA-Compatible "IE=EmulateIE7" env=emulate_ie7
</Location>