I am having caching issues with .js and .css files when trying to update them. I have varnish turned off through .htaccess as suggested by this forum in other posts. This is my .htaccess file:
When I upload replacement js and css files, it does not update on my website. Please help!
Code:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
<filesMatch "\.(html|htm|js|css|png|jpg|php|inc)$">
FileETag None
<ifModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</ifModule>
</filesMatch>
When I upload replacement js and css files, it does not update on my website. Please help!