我正在尝试在我的网络服务器上启用 Gzip,但没有成功。无论如何,我现在应该已经启用了,我以前也这样做过,但一直没有成功。
我的 httpd.conf 中有这个
<位置“C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/bt/web"> # 插入过滤器 设置输出过滤器 DEFLATE # Netscape 4.x 有一些问题... 浏览器匹配 ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 还有一些问题 BrowserMatch ^Mozilla/4\.0[678] no-gzip # MSIE 伪装成 Netscape,但没问题 # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # 注意:由于 Apache 2.0.48 版中的 mod_setenvif 存在错误 # 上述正则表达式不起作用。您可以使用以下 # 解决方法以获得期望的效果: 浏览器匹配 \bMSI[E] !no-gzip !gzip-only-text/html # 不要压缩图像 设置EnvIfNoCase请求URI \ \.(?:gif|jpe?g|png)$ no-gzip 不要改变 # 确保代理不会传递错误的内容 标题附加 Vary User-Agent env=!dont-vary </位置>
和
<IfModule mod_deflate.c> <FilesMatch "\.(js|css|html|htm)$"> 设置输出过滤器 DEFLATE </文件匹配> </IfModule>
mod_deflate 已启用。
我究竟做错了什么?
答案1
第一个问题是您有一个来自文件系统的目录元素......
这是来自 Apache 手册的内容:
何时使用<Location>
。使用<Location>
将指令应用于文件系统之外的内容。对于文件系统中的内容,使用<Directory>
和
<Files>
。例外是<Location />
,这是一种将配置应用于整个服务器的简单方法。
当我在 Apache 上设置 mod_deflate 时,我使用以下设置:
# --------------------------------------------------------
# Deflate Module Configuration
# --------------------------------------------------------
<IfModule deflate_module>
# Set the location to webservers root
<Location />
# Insert the filters
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
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
# Make sure to never zip binaries (ie6 and chrome has issues with this.)
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary
</Location>
# Enable mod_deflate logging by uncommenting these lines
#DeflateFilterNote Input instream
#DeflateFilterNote Output outstream
#DeflateFilterNote Ratio ratio
#LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
#CustomLog logs/deflate_log deflate
</IfModule>