首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

Apache2.x中设立gzip

2012-10-25 
Apache2.x中设置gzip原文出处:?Apache2.x中设置gzip作者: Jet Mah from?Java堂声明:?可以非商业性任意转载

Apache2.x中设置gzip

原文出处:?Apache2.x中设置gzip
作者: Jet Mah from?Java堂
声明:?可以非商业性任意转载, 转载时请务必以超链接形式标明文章原始出处、作者信息及此声明!

在Apache2.x中使用mod_deflate进行gzip压缩,配置信息如下:

?

  1. LoadModule deflate_module modules/mod_deflate.so
  2. LoadModule headers_module modules/mod_headers.so
  3. ?
  4. # gzip 设置
  5. # Only compress specified content type
  6. # see also http://www.devside.net/guides/config/compression
  7. <IfModule mod_deflate.c>
  8. ?? ?# The value must between 1 (less compression) and 9 (more compression)
  9. ?? ?DeflateCompressionLevel 7
  10. ?? ?# compress content with type html, text, and css
  11. ?? ?AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php application/json
  12. ?? ?# place filter 'DEFLATE' on all outgoing content
  13. ?? ?SetOutputFilter DEFLATE
  14. ?? ?# Properly handle old browsers that do not support compression
  15. ?? ?BrowserMatch ^Mozilla/4 gzip-only-text/html
  16. ?? ?BrowserMatch ^Mozilla/4\.0[678] no-gzip
  17. ?? ?BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
  18. </IfModule>

?

参考资料:
apache 2.2.15中配置mod_deflate
httpd.conf — compression

热点排行