Je winkelwagen is leeg
Producten die je toevoegt, verschijnen hier.
Producten die je toevoegt, verschijnen hier.

Alles wat je moet weten over domeinnamen en hoe ze werken
Producten die je toevoegt, verschijnen hier.
XML is een opmaaktaal die gebruikt wordt om gestructureerde data uit te wisselen tussen systemen.
p=quarantine; pct=25 — Test met 25%p=quarantine; pct=100 — Volledig quarantinep=reject — Maximale beschermingDMARC stuurt dagelijks aggregate rapporten in XML-formaat. Handmatig lezen is lastig. Gebruik een DMARC analyzer:
wget -q -O - https://jouwsite.nl/wp-cron.php?doing_wp_cron >/dev/null 2>&1Let op: Doe dit alleen als je weet hoe cron jobs werken.
XML-RPC is een oude interface voor external apps. Bijna niemand gebruikt het nog, maar het is wel een security risico en gebruikt resources.
Deze configuratie zorgt ervoor dat browsers statische bestanden lokaal opslaan waardoor terugkerende bezoekers je site razendsnelladen. Elke bestandstype krijgt een cache-duur die past bij de updatefrequentie.
<IfModule mod_expires.c>
ExpiresActive On
# Afbeeldingen - 1 jaar
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/webp "access plus 1 year"
ExpiresByType image/svg+xml "access plus 1 year"
# CSS en JavaScript - 1 maand
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
# Fonts - 1 jaar
ExpiresByType font/woff2 "access plus 1 year"
ExpiresByType font/woff "access plus 1 year"
ExpiresByType font/ttf "access plus 1 year"
# HTML - 1 uur
ExpiresByType text/html "access plus 1 hour"
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
# Afbeeldingen - 1 jaar
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/webp "access plus 1 year"
ExpiresByType image/svg+xml "access plus 1 year"
# CSS en JavaScript - 1 maand
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
# Fonts - 1 jaar
ExpiresByType font/woff2 "access plus 1 year"
ExpiresByType font/woff "access plus 1 year"
ExpiresByType font/ttf "access plus 1 year"
# HTML - 1 uur
ExpiresByType text/html "access plus 1 hour"
</IfModule> 