Maak een bestand in de root van je website met de naam .htaccess
Dit kan onder linux op de volgende manier, voer uit:
# touch .htaccess
Nu voegen we de volgende regels toe, voer uit:
# nano .htaccess
En voeg deze regels toe:
## EXPIRES CACHING ##<IfModule mod_expires.c>ExpiresActive OnExpiresByType image/jpg "access 1 year"ExpiresByType image/jpeg "access 1 year"ExpiresByType image/gif "access 1 year"ExpiresByType image/png "access 1 year"ExpiresByType text/css "access 1 month"ExpiresByType text/html "access 1 month"ExpiresByType application/pdf "access 1 month"ExpiresByType text/x-javascript "access 1 month"ExpiresByType application/x-shockwave-flash "access 1 month"ExpiresByType image/x-icon "access 1 year"ExpiresDefault "access 1 month"</IfModule>## EXPIRES CACHING ##
Opslaan en klaar, je kunt dit testen bij google op de url: https://developers.google.com/speed/pagespeed/insights/
Of via: http://gtmetrix.com/
Er zijn er vast nog wel meer, maar deze gebruik ik zelf.
Suc6
« Ga terug