- 积分
- 2
- 威望
-
- 金钱
-
- 注册时间
- 2015-2-2
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2015-2-3 10:20:55
|
显示全部楼层
原帖由 licess 于 2015-2-3 09:53 发表
gzip默认就都是启用了的
curl -I -H "Accept-Encoding: gzip, deflate" "https://bbs.vpser.net" 你可以这样测试
看看content-type是什么,上面域名换成你自己的域名或文件地址 ...
我有测试啊,我上面测试了curl -I -H "Accept-Encoding: gzip, deflate" "localhost"
Content-Type显示text/html; charset=UTF-8
也显示了
Content-Encoding: gzip
让我很费解的就是这里,curl测试显示了gzip已开启,但是chrome的pagespeed显示没有开启,是哪里有问题呢
整体内容显示
- [root@localhost ~]# curl -I -H "Accept-Encoding: gzip, deflate" "localhost"
- HTTP/1.1 200 OK
- Server: nginx
- Date: Tue, 03 Feb 2015 02:19:02 GMT
- Content-Type: text/html; charset=UTF-8
- Connection: keep-alive
- X-Powered-By: PHP/5.3.28
- Set-Cookie: PHPSESSID=hihsq1r9j0deeu19j9v8q5jqv0; path=/
- Expires: Thu, 19 Nov 1981 08:52:00 GMT
- Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
- Pragma: no-cache
- X-Pingback: http://192.168.128.137/xmlrpc.php
- Content-Encoding: gzip
复制代码 |
|