Serverkomprimierung mit apache und mod_deflate

Webserver wie der Apache2 bieten das Module mod_deflate an, das eine dynamische Komprimierung von Dateien zulässt. Wenn das Modul installiert ist, dann reichen einige Zeilen Code in der .htaccess-Datei für die Aktivierung und anschließende Komprimierung aus.

Öffnet Eure .htaccess-Datei und fügt die folgenden Zeilen hinzu:

<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain text/html text/xml
AddOutputFilterByType DEFLATE text/css text/javascript
AddOutputFilterByType DEFLATE application/xml application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript application/x-javascript
</IfModule>

Abspeichern, hochladen und die Seite neu aufrufen. Anschließend mit einem PageSpeed-Tool testen.
Wenn das Apache-Modul mod_deflate installiert ist, dann ist der Analyse-Punkte „Komprimierung aktivieren“, z.B. bei google PageSpeed Insights, abgearbeitet.