前端优化:apache2.4开启gzip

首先贴文档:http://httpd.apache.org/docs/current/mod/mod_deflate.html

操作:

打开配置文件:

vim /usr/local/apache2/conf/httpd.conf 

加载so:

#LoadModule filter_module modules/mod_filter.so
#LoadModule deflate_module modules/mod_deflate.so

找到以上2行,删除前面的#,加载 mod_filter.somod_deflate.so

添加过滤规则:


        DeflateCompressionLevel 9
        AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript image/png


AddOutputFilterByType的添加规则如下图,找到相应头信息的Content-Type,添加即可


这里写图片描述

完成:

完成后可以看到Content-Encoding gzip这样的信息


这里写图片描述

经过实测,使用gzip压缩png并没有多大效果,但是对文本类文件效果很明显,不失为一种有效的加速方法

你可能感兴趣的:(前端优化:apache2.4开启gzip)