Sow nothing reap nothing

windows下apache服务器配置gzip压缩

已有3,249次关注

1、如何查看网站是否开启gzip压缩
其实很简单,我们可以借助第三方工具来检测网站是否开启gzip压缩。
通常我自己会使用站长工具,也就是站长之家的工具来检测。
检测网址:http://tool.chinaz.com/Gzips/

2、服务器是apache,如何来配置gzip
首先找到并打开apache/conf目录中的httpd.conf文件;
然后将httpd.conf中打开deflate_Moduleheaders_Module模块;
具体做法为:将如下两句前面的#去掉:

LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so

最后在httpd.conf文件底部加入如下代码配置需要压缩的文件:

<ifmodule deflate_module="">  
  SetOutputFilter DEFLATE
  # Don’t compress images and other 
  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|doc)$ no-gzip dont-vary 
  AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css 
  AddOutputFilterByType DEFLATE application/x-javascript
</ifmodule>

3、再次通过站长工具来检测是否成功即可

已自动关闭评论