I'm managing a website which requires a little speed up. If we do a quick search there's tones of info like, expires header, last-mod header, gzip, blablabla.

Now am trying the see the Expires header in action...

I have a CSS test.css which is returning as example a last-modified of yesterday and a expires one year from now.

I read from Google speed-up docs
http://code.google.com/speed/page-speed/docs/caching.html#LeverageBrowserCaching
"Expires and Cache-Control: max-age ... the browser will not issue any GET requests for the resource until the expiry date or maximum age is reached."

I was expecting at a second refresh not seeing a test.css GET refresh at my apache log.

QUESTION: when setting a future Expires date, does the browser send a GET request to the server or not? If yes. What's the point of Expires then?

Thanks,

link|improve this question

36% accept rate
Section 14.21... w3.org/Protocols/rfc2616/rfc2616-sec14.html – adam77 Apr 19 '11 at 9:49
After a few more test, its true. If we set a future Expires date. browser wont send a GET request to server. CONFIRMED - Makes sense. If for some algorithmic reason browser send a GET request in order to check/refresh the cached item, at the server side we can simple reply an 304 not modified header - only if $_SERVER['HTTP_IF_MODIFIED_SINCE'] sent by the browser still equal to filemtime('path_to_file') – cmancre Apr 20 '11 at 10:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.