Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
676 views
in Technique[技术] by (71.8m points)

nginx: Hot to cache files with ending "?ver=2.6.5” in browser

How can a I add files ending with for example:

  • .js?ver=5.3.2 or
  • .?ver=2.6.5

to my the chache policy. I am using the following, which works fine with standard files, but does not cache files ending with other endings:

location ~* ^.+.(js|css|png|jpg|jpeg|gif|svg|svgz|eot|otf|woff|woff2|ttf|svg|ico|webp)$ {
add_header Cache-Control "public";
try_files $uri @fallback;
etag on;
if_modified_since exact;
#add_header Cache-Control "max-age=31536000";}
question from:https://stackoverflow.com/questions/66062906/nginx-hot-to-cache-files-with-ending-ver-2-6-5-in-browser

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...