Hello Team,
We have to remove caching for specific file and have configured in vhost with below rules.
# For Remove caching for i18n files
<LocationMatch "^/etc\.clientlibs/myproject/clientlibs/clientlib-site/resources/i18n/.*\.$">
Header Set Pragma "no-cache"
Header Set Cache-Control "max-age=0, no-store, no-cache, must-revalidate"
Header Unset ETag
FileETag None
</LocationMatch>
But file getting cached and seeing response header like below
age: 64439
cache-control: max-age=86400, public
Can you please advise on how we can achieve avoiding cache this ?