¿Cómo puedo hacer que funcione la compresión gzip de Apache?

No puedo hacer que mi sitio use compresión gzip.

Recientemente vi estovídeo por Chris Coyier en css-tricks.com. En el video, él habla sobre habilitar la compresión gzip para hacer que los sitios web se ejecuten más rápido.

Según sus instrucciones, me vinculé a través de github a través de html5boilerplate.com, copié el código de compresión gzip de su archivo .htaccess, lo pegué en el mío y lo subí a mi sitio.

Lo he probado a través de gzipwtf.com y parece que no funciona. Puede alguien ayudarme con esto?

Mi archivo .htaccess se ve así:

# ----------------------------------------------------------------------
# Trim www
# ----------------------------------------------------------------------

RewriteEngine On
RewriteCond %{HTTP_HOST} !^orbitprint.com$ [NC]
RewriteRule ^(.*)$ http://orbitprint.com/$1 [L,R=301]

# ----------------------------------------------------------------------
# Gzip compression
# ----------------------------------------------------------------------

<IfModule mod_deflate.c>

  # Force deflate for mangled headers 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
  <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/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>

Respuestas a la pregunta(10)

Su respuesta a la pregunta