如何使用Apache 2.0为IE 8浏览器设置IE = EmulateIE7的X-UA-Compatible标头?

时间:2009-05-06 18:50:32

标签: apache internet-explorer browser internet-explorer-8 internet-explorer-7

我可以设置此标题

X-UA-Compatible "IE=EmulateIE7"

在我的Apache 2.0 httpd.conf文件中使用以下指令:

<Location /mypath>
   Header set X-UA-Compatible "IE=EmulateIE7"
</Location>

如何将Apache配置为仅为IE 8浏览器设置此标头?

1 个答案:

答案 0 :(得分:3)

这是迄今为止我能想到的最好的。 似乎可以工作。如果有人有更好的方法,请告诉我。

BrowserMatch "^.*MSIE 8.*$" emulate_ie7

<Location /mypath>
   Header set X-UA-Compatible "IE=EmulateIE7" env=emulate_ie7
</Location>