Anticache
Paid FeatureAnticache rules prevent HTTP clients to cache resources that were previously fetched from servers so that clients always try to download the latest version.
To achieve this the rule modify the request headers and response headers that are related to caching:
- Removes the request headers:
If-None-MatchandIf-Modified-Since - Adds the request headers:
Pragma: no-cacheandCache-Control: no-cache - Removes the response headers:
Expires,Last-ModifiedandETag - Adds the response headers:
Expires: 0,Cache-Control: no-cache