GZIP压缩+ htaccess放气

时间:2012-12-22 19:14:57

标签: php compression gzip http-compression

我可以同时使用.htaccess:

  DEFLATE 

关于php,图像,html文件等+ php标题:

  ob_start("gzhandler") ?

如果不是,最好的机会是什么?我只是担心它是否会发生冲突。

1 个答案:

答案 0 :(得分:30)

在图像上使用压缩通常是一个非常糟糕的主意,因为Web上大多数广泛使用的图像格式已经被压缩,因此您只会为文件添加不必要的开销。您通常希望对文本本质上的资源(HTML,CSS,JavaScript等)使用压缩,因为对于那些压缩比非常高。

至于问题本身,据我所知,不可能同时同时使用DEFLATEGZIP,但老实说,因为我从来没有尝试过像这样的事情如果这些信息不正确,请耐心等待。

至于选择哪一个,我强烈建议您查看以下帖子,其中您可以看到DEFLATEGZIP的一些优缺点。

Why use deflate instead of gzip for text files served by Apache?

我个人尽可能使用DEFLATE只是因为它有时比通过.htaccess更容易实现而不是在代码中查找。我也喜欢在测试或开发内容时快速禁用该功能的可能性。

编辑: HTML5 Boilerplate有一套非常全面的有用.htaccess指令集,因此您可能需要查看 HERE

现在虽然该文件非常全面,但您可能只想使用正常的案例场景配置,如下所示:

# -----------------------------------------------------------------------
# Defining MIME types to ensure the web server actually knows about them.
# -----------------------------------------------------------------------
<IfModule mod_mime.c>
    AddType application/javascript          js
    AddType application/vnd.ms-fontobject   eot
    AddType application/x-font-ttf          ttf ttc
    AddType font/opentype                   otf
    AddType application/x-font-woff         woff
    AddType image/svg+xml                   svg svgz 
    AddEncoding gzip                        svgz
</Ifmodule>

# -----------------------------------------------------------------------
# Compressing output.
# -----------------------------------------------------------------------
<IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
    AddOutputFilterByType DEFLATE application/javascript
    AddOutputFilterByType DEFLATE text/xml application/xml text/x-component
    AddOutputFilterByType DEFLATE application/xhtml+xml application/rss+xml application/atom+xml
    AddOutputFilterByType DEFLATE image/x-icon image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype
</Ifmodule>