Madebodom adlı üyeden alıntı: mesajı görüntüle
Merhabalar, gtmetrixdeki Add Expires headers , Use cookie-free domains ve Leverage browser caching değerlerimi nasıl yükseltebilirim?

Expires headers icin htaccess dosyasina asagidaki kodu ekle.
<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On
# Default directive
ExpiresDefault "access plus 1 month"
# My favicon
ExpiresByType image/x-icon "access plus 1 year"
# Images
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
# CSS
ExpiresByType text/css "access 1 month"
# Javascript
ExpiresByType application/javascript "access plus 1 year"
</IfModule>
Ayrica asagidaki kodu da ekle:

# 1 Month for most static assets
<filesMatch ".(css|jpg|jpeg|png|gif|js|ico)$">
Header set Cache-Control "max-age=2592000, public"
</filesMatch>