84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
有大神知道SegmentFault的gizp压缩是怎么做到的吗
走同样的路,发现不同的人生
PHP 可以直接配置成自动 gzip。
zlib.output_compression
On
zlib.output_compression_level
zlib.output_handler
如果是用nginx,可以参考这篇文章。
在Server里添加以下配置:
gzip on; gzip_http_version 1.0; gzip_disable "MSIE [1-6]."; gzip_types text/plain application/x-javascript text/css text/javascript;
服務器端的 handler
zlib.output_compression
的值为On
。zlib.output_compression_level
,并让其等于 1-5 中的一个,这个值是压缩等级,值越大压缩的越狠,同时消耗 CPU 越多。zlib.output_handler
是否已经注释掉,如果没有,注释掉它。如果是用nginx,可以参考这篇文章。
在Server里添加以下配置:
服務器端的 handler