Apache开启gzip效能

Apache开启gzip功能1. httpd.conf中打开deflate_Module和headers_Module模块?robinIfModule deflate_modu

Apache开启gzip功能

1. httpd.conf中打开deflate_Module和headers_Module模块?robin

<IfModule deflate_module>    SetOutputFilter DEFLATE    # Don’t compress images and other    SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary    SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary    SetEnvIfNoCase Request_URI .(?:pdf|doc)$ no-gzip dont-vary    AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css    AddOutputFilterByType DEFLATE application/x-javascript</IfModule>
?