Firefox 4 是否存在 GZip 问题?
许多人建议您在 .htaccess 中使用以下代码进行 GZip:
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html
为什么 Firefox 4 需要例外?或者我误解了代码?
Many people recommend that you use the following code in .htaccess for GZip:
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html
Why does Firefox 4 need an exception? Or am I misunderstanding the code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Mozilla/4
!= Firefox 4事实上,Firefox 4 使用
Mozilla/5
作为其 用户代理。出于历史兼容性原因(请参阅此内容),大多数(全部? ) Web 浏览器将自己标识为 Mozilla(用户代理中的其他标记可用于区分 Safari、Firefox、IE 等)Mozilla/4
!= Firefox 4In fact, Firefox 4 uses
Mozilla/5
as part of its user-agent. For historical compatibility reasons (see this), most (all?) web browsers identify themselves as Mozilla (other tokens in the user agent can be used to tell Safari from Firefox from IE, etc)“Mozilla/4”将匹配 Netscape 4 和 IE 8 或更早版本等。它与任何现代网络浏览器都不匹配(IE9、所有基于 Gecko 的浏览器、Safari 和 Chrome 都使用“Mozilla/5”,而 Opera 根本不使用“Mozilla/something”标记)。
"Mozilla/4" would match things like Netscape 4 and IE 8 or earlier. It doesn't match any modern web browser (IE9, all Gecko-based browsers, Safari, and Chrome all use "Mozilla/5" while Opera uses no "Mozilla/something" token at all).