在Apache2之后的版本,GZIP压缩模块名不叫gzip,而叫mod_deflate
1) 找到apache的配置文件httpd.conf,找到下面两行,将前面的 # 去掉。
- LoadModule headers_module modules/mod_headers.so
- LoadModule deflate_module modules/mod_deflate.so
2) 增加一个节点
<ifmodule mod_deflate.c>
DeflateCompressionLevel 6
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE css js
</ifmodule>
参数说明:DeflateCompressionLevel 压缩等级,值1-9,
3) 保存退出。
4) 重启Apache服务。