概要
将网络中传输的内容进行压缩后再传递,可以有效减轻传输负载,提升HTTP 请求的响应速度。将html css javascript image 压缩后 会更快地送达到用户终端。
Apache 压缩配置 <IfModule mod_deflate.c> SetOutputFilter DEFLATE AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript # no image SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary </IfModule>
Nginx 压缩 Gzip on; Gzip_vary on; Gzip_types text/plain text/xml text/css text/javascript application/x-javascript; Gzip_com_level 4; Gzip_com_level 设置压缩等级,取值区间1~9 之间。
配置后对比