用于CSS和JS的GZIP在谷歌浏览器中不起作用,但在Firefox中也起作用

时间:2012-07-18 15:00:02

标签: firefox google-chrome header compression gzip

我最近想出了如何在我将用于服务我的Intranet应用程序的WAMP服务器上启用GZIP(或Deflate)。

但是,在Google Chrome中进行测试时,我发现PHP文件已经过压缩,但Javascript文件和CSS却没有。响应标头显示它未被压缩,Google Pagespeed确认了这一点。

另一方面,Firefox可以毫无问题地收集所有压缩文件。

以下是主要CSS文件的标题:

Google Chrome

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设置,代码还是谷歌浏览器的问题?

谢谢。

1 个答案:

答案 0 :(得分:0)

Google Chrome支持JS / CSS gzip。

Request URL:http://d1o7y22ifnbryp.cloudfront.net/static/7793/css/all.min.css
Request Method:GET
Status Code:200 OK
Request Headersview source
Accept:text/css,*/*;q=0.1
Accept-Charset:GBK,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:zh-CN,zh;q=0.8
Connection:keep-alive
Host:d1o7y22ifnbryp.cloudfront.net
User-Agent:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.52 Safari/536.5

响应标头

Accept-Ranges:bytes
Cache-Control:max-age=604800
Connection:keep-alive
Content-Encoding:gzip
Content-Length:17933
Content-Type:text/css
Date:Wed, 18 Jul 2012 15:43:46 GMT
ETag:"805dc-19c87-4c4a305735340"
Expires:Wed, 25 Jul 2012 15:43:46 GMT
Last-Modified:Thu, 12 Jul 2012 14:45:57 GMT
Server:Apache/2.2.22 (Amazon)
Vary:Accept-Encoding

我认为问题应该是apache配置。