Son başlıklarını ayarlanması için mod_expires alternatif?

2 Cevap php

I am using php on an Apache server. I am unable to set expiration headers in .htaccess on the server that I am working on, as it is a shared server and they (the web host) will not install the mod_expires module in the apache build. I have always used the ExpiresActive On and set the default cache expiration for images, js, xml and text files within the .htaccess file.

Benim diğer seçenekleri nelerdir?

teşekkürler.

2 Cevap

Sen. Htaccess ile ve mod_expires olmadan yapabilirsiniz.

<IfModule mod_headers.c>
  <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
    Header set Expires "Wed, 15 Apr 2020 20:00:00 GMT"
    Header set Cache-Control "public"
  </FilesMatch>
</IfModule>

Başka bir yolu varsa birileri orada PHP ve çıkış kafalardan rota tüm trafik olabilir, modül olmadan çalışan bir Apache belirli bir çözüm ile gelip, ancak son çare olarak gerekebilir. Ama PHP tercüman aracılığıyla her kaynak gönderme anlamına ve korkunç pahalı olacaktır.