I am checking files that are cached in my firefox browser and I note a load of them have an expires of:

"1970-01-01 00:00:00" expires header

This must be a common setting with a common meaning. What exactly? No expiration set? I tried googling but couldn't get much.

Any tips?

Thanks

link|improve this question

67% accept rate
feedback

1 Answer

up vote 2 down vote accepted

It means the page expires 1970-01-01 00:00:0

Which means that they have already expired, this forces the browser to request a fresh version of them everytime. Therefore they are not retrieved from the browsers cache.

Here's some more info

http://developer.yahoo.com/performance/rules.html#expires

link|improve this answer
Thanks, is it an industry convention to use this date? – dublintech Feb 23 at 17:29
1  
Its the Unix start time en.wikipedia.org/wiki/Unix_time, Quite a few people use this... – reevesy Feb 23 at 17:31
thanks for that. Didn't know. – dublintech Feb 23 at 17:32
1  
In our app we use a few HTTP headers to ensure that our dynamic pages are not cached by the browser as we want to "rebuild" a fresh version from the server each time they are request. To do this properly in all browsers you have to set quite a few headers, this explains it well mnot.net/cache_docs – reevesy Feb 23 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.