为 Google Chrome Frame 有选择地配置 Apache 2 mod_headers
我目前正在评估 Google Chrome Frame,到目前为止我对它很满意,但我想做的是有选择地将它用于我网站的某些部分。
有些部分需要 ActiveX,因此需要在本机 IE 中查看,而其他部分则受益匪浅,最终可能需要 Chrome Frame。
我目前在我的 apache httpd.conf 文件中配置了以下内容 -
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
BrowserMatch chromeframe gcf
Header append X-UA-Compatible "chrome=1" env=gcf
</IfModule>
</IfModule>
这会导致通过 Apache 传入的任何内容将 chrome 框架内容添加到标头中。
我需要的是仅当用户访问特定 URL/特定页面时才发生这种情况,我目前通过 RewriteRules 控制这些页面。
任何人都可以解释我将如何解决这个问题,因为我对 Apache 配置文件的理解并不出色。
谢谢。
I am currently evaluating Google Chrome Frame and so far i'm happy with it, but what i'd like to do is selectively use it for certain sections of my website.
Some sections require ActiveX so need to be viewed in native IE, whereas others benefit greatly, and may end up requiring, Chrome Frame.
I've currently got the following configured in my apache httpd.conf file -
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
BrowserMatch chromeframe gcf
Header append X-UA-Compatible "chrome=1" env=gcf
</IfModule>
</IfModule>
This causes anything coming in via Apache to get the chrome frame stuff added to the headers.
What I need is to make this only happen when a user visits particular URL's / particular pages, which i'm currently controlling via RewriteRules.
Could anybody explain how I would go about this, as my understanding of the Apache config files isn't brilliant.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论