Wie kann ich die Apache gzip-Komprimierung zum Laufen bringen?

Ich kann meine Website nicht dazu bringen, die gzip-Komprimierung zu verwenden.

Ich habe das kürzlich gesehenVideo von Chris Coyier bei css-tricks.com. In dem Video spricht er über die Aktivierung der gzip-Komprimierung, um die Ausführung von Websites zu beschleunigen.

Gemäß seiner Anweisung habe ich über html5boilerplate.com eine Verknüpfung zu github hergestellt, den gzip-Komprimierungscode aus der .htaccess-Datei kopiert, in meine eigene eingefügt und auf meine Website hochgeladen.

Ich habe es über gzipwtf.com getestet und es scheint nicht zu funktionieren. Kann mir jemand dabei helfen?

Meine .htaccess-Datei sieht folgendermaßen aus:

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

Antworten auf die Frage(10)

Ihre Antwort auf die Frage