I would like to time stamp my CSS Caching to anyone viewing for the time being, any idea how this would be done with the Esplanade theme?
If you’re using Apache make sure you have mod_expires installed and add this to your .htaccess file:
<IfModule mod_expires.c>
ExpiresByType text/css M31536000
</IfModule>
Replace the number with how manu seconds you want the file to be cached.
Recommend also setting these two:
Header set Pragma "public"
Header set Cache-Control "max-age=31536000, public, must-revalidate, proxy-revalidate"
-
This reply was modified 12 years, 5 months ago by Daniel Tara.