.htaccess ile Apache’nin GZIP Özelliğini & Tarayıcı Önbelleğini Etkinleştirme
Gzip ve mod_deflate mime türlerini algılıyor.
Mime türü için mod_expires’ı algılayıp bitiş(expire) süresini ayarlıyor.
Mime türü için mod_headers’ı algılayıp, Tarayıcı Önbelleği limitlerini ayarlıyor.
WordPress sitenin daha da hızlı olmasını sağlar.
# Enable GZIPAddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # Expires Headers - 2678400s = 31 daysExpiresActive On ExpiresDefault "access plus 1 seconds" ExpiresByType text/html "access plus 7200 seconds" ExpiresByType image/gif "access plus 2678400 seconds" ExpiresByType image/jpeg "access plus 2678400 seconds" ExpiresByType image/png "access plus 2678400 seconds" ExpiresByType text/css "access plus 518400 seconds" ExpiresByType text/javascript "access plus 2678400 seconds" ExpiresByType application/x-javascript "access plus 2678400 seconds" # Cache Headers# Cache specified files for 31 days Header set Cache-Control "max-age=2678400, public" # Cache HTML files for a couple hoursHeader set Cache-Control "max-age=7200, private, must-revalidate" # Cache PDFs for a dayHeader set Cache-Control "max-age=86400, public" # Cache Javascripts for 31 daysHeader set Cache-Control "max-age=2678400, private"
Ara bul