Como ativar a compactação Gzip ou Deflate via .htaccess?

21

Como ativar a compactação Gzip ou Deflate via .htaccess e qual é a melhor nos dias de hoje? Exemplos de código necessários.

    
por dzhi 02.05.2010 / 09:43

3 respostas

15

HTML5 Boilerplate ( link ) oferece o que parece ser a melhor e mais eficaz solução, junto com muitos outros, como armazenamento em cache, tipos mime etc. Altamente recomendado.

<IfModule mod_deflate.c>

# Force compression for mangled headers.
# http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
</IfModule>
</IfModule>


# Compress all output labeled with one of the following MIME-types
# (for Apache versions below 2.3.7, you don't need to enable 'mod_filter'
#  and can remove the '<IfModule mod_filter.c>' and '</IfModule>' lines
#  as 'AddOutputFilterByType' is still in the core directives).

<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE application/atom+xml \
application/javascript \
application/json \
application/rss+xml \
application/vnd.ms-fontobject \
application/x-font-ttf \
application/x-web-app-manifest+json \
application/xhtml+xml \
application/xml \
font/opentype \
image/svg+xml \
image/x-icon \
text/css \
text/html \
text/plain \
text/x-component \
text/xml
</IfModule>

</IfModule>

EDIT: Uma vez que esta pergunta e resposta ficar recebendo upvoted depois de alguns anos eu estou colocando o servidor H5BP configs link para mais completo otimização .

EDIT: link fixo para link

    
por 17.04.2013 / 09:47
12

Veja a documentação do mod_deflate do Apache, especificamente, o " comprime tudo, exceto as imagens "exemplo. Ele funcionou bem para mim e seria colocado em um arquivo .htaccess da seguinte forma:

<IfModule mod_deflate.c>
        # Insert filter
        SetOutputFilter DEFLATE

        # Netscape 4.x has some problems...
        BrowserMatch ^Mozilla/4 gzip-only-text/html

        # Netscape 4.06-4.08 have some more problems
        BrowserMatch ^Mozilla/4\.0[678] no-gzip

        # MSIE masquerades as Netscape, but it is fine
        # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

        # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
        # the above regex won't work. You can use the following
        # workaround to get the desired effect:
        BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

        # Don't compress images
        SetEnvIfNoCase Request_URI \
        \.(?:gif|jpe?g|png)$ no-gzip dont-vary

        # Make sure proxies don't deliver the wrong content
        Header append Vary User-Agent env=!dont-vary
</IfModule>

E, claro, certifique-se de ter o seguinte em seu arquivo httpd.conf para ativar mod_deflate :

LoadModule deflate_module libexec/apache2/mod_deflate.so
    
por 24.08.2010 / 00:40
9

Ativei a deflação em ativos estáticos no meu site (por tipo MIME) usando o seguinte, adicionado ao arquivo .htaccess na raiz do meu diretório public_html :

<ifModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/html text/xml text/css text/plain
  AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript application/json
</ifModule>

Você também pode ativá-lo por extensão de arquivo, embora eu não tenha a sintaxe útil.

    
por 07.12.2012 / 01:47