How can I add an expires header just for pngs, and the ico file?

link|improve this question

38% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Use the ExpiresByType directive of mod_expires. Docs here.

ExpiresActive On

# expire after a month
ExpiresByType image/png A2592000
ExpiresByType image/x-icon A2592000
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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