Come abilitare la compressione Gzip o Deflate tramite .htaccess?


22

Come abilitare la compressione Gzip o Deflate tramite .htaccess e qual è la migliore in questi giorni? Esempi di codice necessari.

Risposte:


15

HTML5 Boilerplate ( http://html5boilerplate.com ) offre quella che sembra essere l'impostazione della soluzione migliore e più efficace insieme a molti altri come cache, tipi di mime ecc. Altamente raccomandato.

<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: Dal momento che questa domanda e risposta continuano ad essere votate dopo un paio d'anni sto inserendo un link di configurazione del server H5BP per un'ottimizzazione più completa .

EDIT: collegamento fisso a https://github.com/h5bp/server-configs-apache


12

Vedi la documentazione di Apache mod_deflate , in particolare l'esempio " comprimi tutto tranne le immagini ". Ha funzionato bene per me e verrebbe inserito in un .htaccessfile come segue:

<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, naturalmente, assicurati di avere quanto segue nel tuo httpd.conffile per abilitare mod_deflate:

LoadModule deflate_module libexec/apache2/mod_deflate.so

9

Ho abilitato deflate su risorse statiche sul mio sito (per tipo MIME) utilizzando quanto segue aggiunto al .htaccessfile nella directory principale della mia public_htmldirectory:

<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>

Puoi anche abilitarlo per estensione, anche se non ho la sintassi per quello a portata di mano.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.