通过.htaccess文件用Gzip压缩所有web内容。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过.htaccess文件用Gzip压缩所有web内容。相关的知识,希望对你有一定的参考价值。

  1. ################ COMPRESS EVERYTHING WITH GZIP ################
  2. <IfModule mod_deflate.c>
  3. # Insert filter
  4. SetOutputFilter DEFLATE
  5.  
  6. # Netscape 4.x has some problems...
  7. BrowserMatch ^Mozilla/4 gzip-only-text/html
  8.  
  9. # Netscape 4.06-4.08 have some more problems
  10. BrowserMatch ^Mozilla/4.0[678] no-gzip
  11.  
  12. # MSIE masquerades as Netscape, but it is fine
  13. # BrowserMatch MSIE !no-gzip !gzip-only-text/html
  14.  
  15. # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
  16. # the above regex won't work. You can use the following
  17. # workaround to get the desired effect:
  18. BrowserMatch MSI[E] !no-gzip !gzip-only-text/html
  19.  
  20. # Don't compress images
  21. #SetEnvIfNoCase Request_URI
  22. #.(?:gif|jpe?g|png)$ no-gzip dont-vary
  23.  
  24. # Make sure proxies don't deliver the wrong content
  25. Header append Vary User-Agent env=!dont-vary
  26. </IfModule>

以上是关于通过.htaccess文件用Gzip压缩所有web内容。的主要内容,如果未能解决你的问题,请参考以下文章

如何为 .htaccess 文件中的某些媒体文件禁用 Apache gzip 压缩?

apache_conf 通过启用gzip压缩来提高页面速度。在WordPress中添加到.htaccess

apache_conf Laravel .htaccess文件,利用浏览器缓存和gzip压缩

通过 .htaccess 设置过期标头和压缩数据

使用 htaccess 进行 GZIP 压缩有啥限制吗?

apache_conf 启用GZIP压缩#optimization #gzip #htaccess