Firefox 4 是否存在 GZip 问题?

发布于 2024-11-10 17:16:54 字数 383 浏览 0 评论 0原文

许多人建议您在 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

把昨日还给我 2024-11-17 17:16:54

Mozilla/4 != Firefox 4

事实上,Firefox 4 使用 Mozilla/5 作为其 用户代理。出于历史兼容性原因(请参阅此内容),大多数(全部? ) Web 浏览器将自己标识为 Mozilla(用户代理中的其他标记可用于区分 Safari、Firefox、IE 等)

Mozilla/4 != Firefox 4

In 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)

硬不硬你别怂 2024-11-17 17:16:54

“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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文