i'm using some directives in the htaccess using mod_expires to set the cache of js files:
ExpiresActive On
<FilesMatch "\.(js)$">
ExpiresDefault "access plus 3 days"
Header append Cache-Control "public"
</FilesMatch>
Firebug shows that the browser requests the file every time the page is refreshed and does not keep it in cache. This is the response headers list as shown in Firebug's Net Panel:
HTTP/1.1 200 OK
Date: Tue, 31 Jan 2012 09:43:00 GMT
Server: Apache
Last-Modified: Mon, 09 Jan 2012 14:25:54 GMT
Etag: "1076cb52-16eac-4b6192d1aa080"-gzip
Accept-Ranges: bytes
Cache-Control: max-age=259200, public
Expires: Fri, 03 Feb 2012 09:43:00 GMT
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 33140
Keep-Alive: timeout=10, max=898
Connection: Keep-Alive
Content-Type: application/x-javascript
What's wrong? Why the browser doesn't cache the file?