Php Tarayıcı Önbellekleme Htaccess

 Tarayıcı Önbellekleme Htaccess 

Wordpres te ve php dosyalarının htacces dosyalarında ufak bir kod ekleme ile sitelerinizi hızlandırabilir ve kullanıcılarınızın sitelrinizden sıkılıp gitmesini engelleyebilirsiniz.Tabi bu durum google botlarınında canını sıkacağından rakiplerinizin bir adım önüne bu şekilde geçebilirsiniz.

Tarayıcı Önbellekleme Htaccess ile yapabileceğiniz bu uygulamayı kod bilmeden php bilmedende gerçekleştirebilirsiniz..Sitenize bu kodu eklemeden sitenizin testini yapamanız gerekmektedir ki farkı görelim.Test adresi ; https://developers.google.com/speed/pagespeed/insights bu linkten test edebilirsiniz…

Bu kodları WordPress sitenizin ftp dizinindeki htacces dosyasının yedeğini aldıktan sonra denemenizi tavsiye ediyoruz.Kesinlikle ve kesinlikle yedek almanızı tavsiye ederiz.

# Enable GZIP

AddOutputFilterByType 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 days

ExpiresActive On
ExpiresDefault “access plus 2678400 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 750000 seconds”
ExpiresByType text/javascript “access plus 2678400 seconds”
ExpiresByType application/x-javascript “access plus 2678400 seconds”


# Cache Headers

# Cache specified files for 31 days
<filesmatch “\.(ico|flv|jpg|jpeg|png|gif|css|swf)$”>
Header set Cache-Control “max-age=2678400, public”

# Cache HTML files for a couple hours
<filesmatch “\.(html|htm)$”>
Header set Cache-Control “max-age=7200, private, must-revalidate”

# Cache PDFs for a day
<filesmatch “\.(pdf)$”>
Header set Cache-Control “max-age=86400, public”

# Cache Javascripts for 31 days
<filesmatch “\.(js)$”>
Header set Cache-Control “max-age=2678400, private”

Bu kodu htacces dosyanızın en altına yapıştırıp sitenizin ana dizinine yapıştırıp kayıt edin.Sitenizi tekrar test edin test adresiniz ; https://developers.google.com/speed/pagespeed/insights burası test ettikten sonra farkı göreceksiniz.

 

1 Star2 Stars3 Stars4 Stars5 Stars (Bu yazıya oy vermek ister misiniz?)
Loading...

Bir cevap yazın

E-posta adresiniz yayınlanmayacaktır. * işaretli alanların doldurulması zorunludur.

Bizi Arayın
DMCA.com Protection Status