Hi,
Im trying to set up some cache control options in my htaccess file.
At the moment it looks like this:
<FilesMatch "\.(flv|gif|jpg|jpeg|png|ico|swf|css|js|html|pdf)$">
Header set Cache-Control "max-age=2592000, public, must-revalidate"
Header unset ETag
FileETag None
</FilesMatch>
However I read about (and wanted to add) Header unset Last-Modified, so it would be something like:
<FilesMatch "\.(flv|gif|jpg|jpeg|png|ico|swf|css|js|html|pdf)$">
Header set Cache-Control "max-age=2592000, public, must-revalidate"
Header unset Last-Modified
Header unset ETag
FileETag None
</FilesMatch>
However, using this (according to Firebug) doesnt make anything load from the cache at all (whereas the first technique loads everything)
Am I doing something wrong? The syntax seems to be right.
A.