Henrik Nordstrom wrote:

curl -H "Cache-Control: no-cache"

This is HTTP 1.1; to make this work with HTTP 1.0 also you should write

   curl -H "Cache-Control: no-cache" -H "Pragma: no-cache"

The Pragma is the way to express this in HTTP 1.0; however, HTTP 1.0 says only that caches should, not that they must obey this directive.

Regards,

Oliver Schoett

Reply via email to