如何在 apache2 上启用 deflate?debian

如何在 apache2 上启用 deflate?debian

我看了其他答案,但那些解决方案并没有帮助。

我完全搞不清楚该怎么做。我对 Apache 几乎一无所知,也不知道如何使用它,而且几乎所有文章都说要写这个,但没有告诉我在哪里写。

到目前为止我已经这样做了

# a2enmod deflate
Module deflate already enabled

然后我尝试在 httpd.conf 中写入这个

AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css

然后我写了一个更长的版本,其中涉及 deflate.c。在那些不起作用之后,我删除了它们,并在 apache2/sites-enabled/000-default 中写入了 AddOutputFilterByType 行

我用这个来测试http://www.whatsmyip.org/http_compression/

每次都说没有压缩。我使用了另一个网站,但始终无法压缩。此外,每次保存文件时我都会重新启动服务器,那么问题可能出在哪里,我该如何正确启用此功能?

答案1

尝试在所有目录配置之后将以下内容添加到您的 Apache 站点配置中。

它有一些规则来处理难以处理 gzip 压缩网页的浏览器。

<Location />
# Insert filter
SetOutputFilter DEFLATE

# 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 \bMSIE !no-gzip !gzip-only-text/html

# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won't work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary

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

相关内容