GZIP compressie .htaccess voor wordpress website

gzip compressie

Één van de handigste en gemakkelijkste opties om je website sneller te maken is GZIP compressie.
Door GZIP compressie in te schakelen wordt de output van je website kleiner gemaakt, hierdoor worden er kleinere bestanden naar je browser toegestuurd waardoor je website sneller geladen wordt.
Een manier om GZIP compressie makkelijk in te schakelen door bijvoorbeeld een code in je htaccess bestand te plaatsen.

Download in de root van je ftp server, waarschijnlijk public_html of www het htaccess.txt bestand naar je computer en open deze in de tekst verwerker  kladblok.
Daar voeg je de volgende code toe:

Code in je .htaccess bestand

 <IfModule mod_deflate.c>
  # Compress HTML, CSS, JavaScript, Text, XML and fonts
  AddOutputFilterByType DEFLATE application/javascript
  AddOutputFilterByType DEFLATE application/rss+xml
  AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
  AddOutputFilterByType DEFLATE application/x-font
  AddOutputFilterByType DEFLATE application/x-font-opentype
  AddOutputFilterByType DEFLATE application/x-font-otf
  AddOutputFilterByType DEFLATE application/x-font-truetype
  AddOutputFilterByType DEFLATE application/x-font-ttf
  AddOutputFilterByType DEFLATE application/x-javascript
  AddOutputFilterByType DEFLATE application/xhtml+xml
  AddOutputFilterByType DEFLATE application/xml
  AddOutputFilterByType DEFLATE font/opentype
  AddOutputFilterByType DEFLATE font/otf
  AddOutputFilterByType DEFLATE font/ttf
  AddOutputFilterByType DEFLATE image/svg+xml
  AddOutputFilterByType DEFLATE image/x-icon
  AddOutputFilterByType DEFLATE text/css
  AddOutputFilterByType DEFLATE text/html
  AddOutputFilterByType DEFLATE text/javascript
  AddOutputFilterByType DEFLATE text/plain
  AddOutputFilterByType DEFLATE text/xml

  # Remove browser bugs (only needed for really old browsers)
  BrowserMatch ^Mozilla/4 gzip-only-text/html
  BrowserMatch ^Mozilla/4.0[678] no-gzip
  BrowserMatch bMSIE !no-gzip !gzip-only-text/html
  Header append Vary User-Agent
</IfModule>

Sla het bestand op en hernoem het naar .htaccess en upload het weer op je server.

Test de GZIP compressie

Je kan daarna testen via HTTP compressie test of je website gecomprimeerd is.
Er zijn ook hosting partijen die het ondersteunen door middel van het Cpanel of service Panel van de website, dit zit onder de PHP instellingen, zoek daar naar output compression.

Geef een reactie

Je e-mailadres wordt niet gepubliceerd. Vereiste velden zijn gemarkeerd met *

Deze site gebruikt Akismet om spam te verminderen. Bekijk hoe je reactie-gegevens worden verwerkt.