如何查看mod_deflate被压缩了。

如何查看mod_deflate被压缩了。

[root@a1 apache]# more logs/deflate_log
"GET / HTTP/1.1" 37/44 (84%)
"GET /index.html HTTP/1.0" -/- (-%)
"GET /index.html HTTP/1.0" -/- (-%)
"GET / HTTP/1.1" 8089/30365 (26%)
"GET / HTTP/1.1" -/- (-%)
"GET / HTTP/1.1" -/- (-%)
"GET / HTTP/1.1" -/- (-%)
"GET / HTTP/1.1" -/- (-%)
"GET / HTTP/1.1" -/- (-%)
"GET /index.html HTTP/1.1" 8089/30365 (26%)

[root@a1 apache]# telnet 192.168.8.141 80
Trying 192.168.8.141...
Connected to 192.168.8.141 (192.168.8.141).
Escape character is '^]'.
GET /index.html HTTP/1.1

HTTP/1.1 400 Bad Request
Date: Mon, 14 Jul 2008 00:41:07 GMT
Server: Apache/2.2.4 (Unix)
Content-Length: 226
Connection: close
Content-Type: text/html; charset=iso-8859-1


这样压缩了吗?
在请求成功,服务器返回的header信息中有如下内容说明你GET的内容经过deflate压缩了。
Accept-Encoding=gzip,deflate
一般都是对网页或是文本文件进行压缩,图片和其他多媒体数据都过滤不压缩,理由不用多说吧大家都知道:图片和mp3等都已经压缩过的,再压缩也不会有什么效果,反正耗费cpu资源。

PS:从贴的内容来返回状态400,说明你GET的url有问题,可能是不存在,当然就不可能进行压缩了:HTTP/1.1 400 Bad Request
lz够可以的啊,发完帖子就消失了。