vote up 0 vote down star
1

I'm a little confused here. I read some of the earlier questions on https caching but I didnt get a clear answer.

I've got a script sitting on: https://www.example.com/main.php

It generates an html page that refers to images/css/js resources sitting (relatively) at: /css /javascript /images /a/b/img2

How do I enable caching for these resources?? I have access to modifying the header output of the main.php script.


Edit: Solution as below:

#Set a far expiration date for components
<ifmodule mod_expires.c>
ExpiresActive On
  <filesmatch "\.(jpg|jpeg|gif|png|css|js)$">
       ExpiresDefault "access plus 6 months"
   </filesmatch>
</ifmodule>

#add ETag for components
FileETag MTime Size
flag

70% accept rate

1 Answer

vote up 1 vote down check

If you're running Apache web server you probably need a .htaccess file to enter caching information about your components.

In the .htaccess file:

#Set a far expiration date for components
<ifmodule mod_expires.c>
ExpiresActive On
ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType image/jpg A2592000
ExpiresByType image/jpeg A2592000
  <filesmatch "\.(jpg|gif|png|css|js)$">
       ExpiresDefault "access plus 10 years"
   </filesmatch>
</ifmodule>

#add ETag for components
FileETag MTime Size

Access to header output of the main.php script can only modify caching for your main script, not the components.

link|flag
Hi Mauris, I'm reading up on mod_expires and it looks like it would work wonderfully! But I'm confused with the filesmatch command on jpg|gif|png - why have you used that? – Steve Nov 1 at 1:34
I only want my components to be cached, not my php script as the content might be dynamic. – thephpdeveloper Nov 1 at 1:39
Sorry for being an ass here and pursuing this point (BTW - your solution works!)... But isnt jpg|gif|png redundant? We're already specifying it in the ExpiresByType entry, no? – Steve Nov 1 at 1:51
well you can say that again =D - can't remember why I did that. Copied from an old project. – thephpdeveloper Nov 1 at 2:18
oh yes, the ExpiresByType only apply to images, you still have css and js in the filesmatch – thephpdeveloper Nov 1 at 2:19
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.