如何判断 mod_deflate 是否真正起作用?

如何判断 mod_deflate 是否真正起作用?

我已将以下内容放入我的 http.conf 文件中:

# mod_deflate configuration
<IfModule mod_deflate.c>

# Restrict compression to these MIME types
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/css

# Level of compression (Highest 9 - Lowest 1)
DeflateCompressionLevel 9

# Netscape 4.x has some problems.
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

<IfModule mod_headers.c>
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</IfModule>

</IfModule>

我的内容没有返回 gzip 类型的 Content-Encoding,但我发现自己收到更多 304 并且 Etag 附加了 +gzip 后缀。mod_deflate 真的在发挥作用吗?(抱歉有点菜鸟)

答案1

标题告诉您什么,如果它没有返回“content-encoding: gzip”,它可能不起作用..您可以按如下方式测试:

curl -I -H 'Accept-Encoding: gzip,deflate' http://yoursite.com/somefile

答案2

Apache 文档按类型添加输出过滤器表示该指令在 Apache httpd 2.1 及更高版本中已被弃用,并且如果 Apache 无法确定 mime 类型,它就无法正常工作。

我建议使用类似下面的方法作为起点来启用压缩,然后重新添加所有浏览器调整和压缩级别。显然,您可能需要仔细检查 httpd.conf 以确保它实际上也加载了 mod_deflate.so:

<Location />
    SetOutputFilter DEFLATE
    # Don't compress images
    SetEnvIfNoCase Request_URI \.(?:gif|png|jpg|jpeg)$ no-gzip dont-vary
    Header append Vary User-Agent env=!dont-vary
</Location>

使用 Michael Steinfeld 提到的 cURL 进行验证。

答案3

由于我的声誉不够,无法添加评论,因此我将其写为答案。

Michael Steinfeld 的原始答案是输出以下错误(在 Windows 命令提示符上)

curl: (6) Could not resolve host: gzip,deflate'

我通过删除冒号后的空格解决了这个问题:

curl -I -H 'Accept-Encoding:gzip,deflate' http://yoursite.com/somefile

答案4

LogLevel设置为debug,mod_deflate 会将其调试消息记录到ErrorLog。所有正在压缩的资源都会被记录下来。您可以使用以下代码查看 mod_deflate 是否实时运行:

tail -f /path/to/error-log | grep deflate

例如

[2015 年 4 月 22 日星期三 05:37:49.742615] [deflate:debug] [pid 22627] mod_deflate.c(849):[客户端 127.0.0.1:55667] AH01384:Zlib:压缩 10700 到 2637:URL /web/js/common.js,引用者:http://localhost/index.php

相关内容