Sorry that this appears to be very similar to a number of other questions, but I have looked at all related posts I can see, but they don't seem to have quite the same issue as I do ;-)
The problem is that I can't get clientside caching of .js, .css and images to work from my Apache2 servers (I've got both Ubuntu Apache/2.2.8 and a WAMP Apache under Windows).
With default settings, I get good ETag style server-led caching (304 responses) but if I turn this off by putting Header Unset commands into my virtual host config file, and then supplement with Caching directives (see below), it doesn't seem to be respected by the browser.
I can see using Firebug that the browser knows that a cached file is valid for another couple of hours, but it still asks for it anyway.
Any tips on how to debug this would be most welcome.
The relevant part of host config is shown below:
<VirtualHost *:80>
DocumentRoot "C:/Projects/A2C/branches/CR7"
ServerName *
ServerAlias localhost ecomsvr0.dmclub.net
ErrorLog "c:\log\a2c.log"
CustomLog "c:\log\a2c-access.log" common
<Directory "c:\projects\A2C\branches\CR7">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
Allow from all
ExpiresDefault A36000
Header Set Cache-Control "max-age=7200"
Header Unset Etag
Header Unset Last-Modified
</Directory>
</VirtualHost>