PhpStudy开启Apache的gzip压缩功能
APACHE2.4开启GZIP变化的只是语句,套路还是老套路,主要过程如下:
LoadModule filter_module modules/mod_filter.so
LoadModule headers_module modules/mod_headers. so
LoadModule deflate_module modules/mod_deflate. so
然后再httpd.conf的末尾加上:
<IfModule mod_deflate.c>
DeflateCompressionLevel 9
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE css js
</IfModule>
本文出自 蓝鹰博客,转载时请注明出处及相应链接。
本文永久链接: http://www.lanyingblog.com/blog/2143.html