Aktive Gzip-Komprimierung - CSS-Tricks

Anonim

Durch die Komprimierung werden die Antwortzeiten reduziert, indem die Größe der HTTP-Antwort verringert wird. Gzip ist die derzeit beliebteste und effektivste Komprimierungsmethode und reduziert die Antwortgröße im Allgemeinen um etwa 70%.

Im Jahr 2009 wurden 90% des Internetverkehrs über unterstützte Browser übertragen. Gzip. Heute:

Alle modernen Browser unterstützen und verhandeln automatisch die GZIP-Komprimierung für alle HTTP-Anforderungen: Unsere Aufgabe besteht darin, sicherzustellen, dass der Server ordnungsgemäß konfiguriert ist, um die komprimierte Ressource auf Anforderung des Clients bereitzustellen.

Auf einem Apache-basierten Server können Sie dies über die Datei ".htaccess" tun:

# BEGIN GZIP AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript # END GZIP

Dies ist im Wesentlichen eine Liste von MIME-Typen, für die Gzipping dann gilt. Sie können die Liste jederzeit in alle textbasierten Assets ändern, die Sie bereitstellen.

Das HTML5 Boilerplate-Projekt bietet Serverkonfigurationen für alle gängigen Server. Dies ist die Version für .htaccess

 AddOutputFilterByType DEFLATE "application/atom+xml" \ "application/javascript" \ "application/json" \ "application/ld+json" \ "application/manifest+json" \ "application/rdf+xml" \ "application/rss+xml" \ "application/schema+json" \ "application/vnd.geo+json" \ "application/vnd.ms-fontobject" \ "application/x-font-ttf" \ "application/x-javascript" \ "application/x-web-app-manifest+json" \ "application/xhtml+xml" \ "application/xml" \ "font/eot" \ "font/opentype" \ "image/bmp.webp" \ "image/svg+xml" \ "image/vnd.microsoft.icon" \ "image/x-icon" \ "text/cache-manifest" \ "text/css" \ "text/html" \ "text/javascript" \ "text/plain" \ "text/vcard" \ "text/vnd.rim.location.xloc" \ "text/vtt" \ "text/x-component" \ "text/x-cross-domain-policy" \ "text/xml"