Compression (Gzip/Brotli)
Checks if the server compresses text responses.
Warum ist das wichtig?
Gzip compression typically reduces HTML size by 60-80%. Brotli is another 15-20% more efficient. Without compression, the server sends unnecessarily large files, increasing load time and bandwidth costs.
Wie beheben Sie es?
Enable Gzip or Brotli on your web server. Apache: mod_deflate or mod_brotli. Nginx: gzip on; or brotli on;. Cloudflare enables this automatically. Check the Content-Encoding response header to confirm.
Dieser Check bewertet von 0 bis 100. Unter 50 ist ein Fail, 50 bis 89 eine Warnung, 90 oder höher ist gut. Nach jedem Crawl sehen Sie die Note pro Seite im Report, mit einer kurzen Erklärung.
Häufige Fragen
Checks if the server compresses text responses.
Gzip compression typically reduces HTML size by 60-80%. Brotli is another 15-20% more efficient. Without compression, the server sends unnecessarily large files, increasing load time and bandwidth costs.
Enable Gzip or Brotli on your web server. Apache: mod_deflate or mod_brotli. Nginx: gzip on; or brotli on;. Cloudflare enables this automatically. Check the Content-Encoding response header to confirm.
Beispiel
Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.
# Nginx: Brotli (best) + Gzip (fallback)
brotli on;
brotli_comp_level 6;
brotli_types text/html text/css application/javascript application/json image/svg+xml;
gzip on;
gzip_comp_level 5;
gzip_vary on;
gzip_types text/html text/css application/javascript application/json;
# Apache .htaccess
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/css application/javascript application/json
</IfModule>