0

is there a way to prevent cacheing for some pages when using nginx reverse proxy cache. like sending some king of header from php?

my version of nginx is 0.7.64

thanks in advance:)

Bogdan Cosmin
  • 301
  • 1
  • 3
  • 10

1 Answers1

1

You mean something like...

Cache-Control: no-cache

The relevant section of RFC 2616 makes for interesting reading if you're wanting to control caching.

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972