我最近想出了如何在我将用来为我的 Intranet 应用程序提供服务的 WAMP 服务器上启用 GZIP(或 Deflate)。
但是,在 Google Chrome 中进行测试时,我看到 PHP 文件已压缩,但 Javascript 文件和 CSS 未压缩。Response 标头显示它未压缩,Google Pagespeed 确认了这一点。
另一方面,Firefox 可以毫无问题地接收所有压缩文件。
以下是主要 CSS 文件的标题作为示例:
谷歌浏览器
Date: Wed, 18 Jul 2012 14:48:43 GMT
Content-Length: 6533
Last-Modified: Wed, 18 Jul 2012 00:42:33 GMT
Server: Apache/2.2.21 (Win64) PHP/5.3.10
ETag: "a00000001509b-1985-4c50ff04b26ef"
Vary: Accept-Encoding
Content-Type: text/css
Accept-Ranges: bytes
200 OK
火狐
Date: Wed, 18 Jul 2012 14:33:14 GMT
Server: Apache/2.2.21 (Win64) PHP/5.3.10
Last-Modified: Wed, 18 Jul 2012 00:42:33 GMT
Etag: "a00000001509b-1985-4c50ff04b26ef"
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 1273
Content-Type: text/css
200 OK
这是我的 WAMP 设置、代码的问题,还是只是谷歌浏览器?
谢谢你。