缓存与部署后 AWS CDN 过期
AWS CDN Expire after caching vs deploy
如何将 AWS CDN 设置为在用户浏览器中缓存后过期?
当前方法在部署后过期...
Expires: new Date(new Date().getTime() + (1000 * 60 * 60 * 24 * 7))
使用Javascript。
如果我正确理解你的问题,我建议使用 Cache-Control: max-age=seconds 而不是绝对时间。
如何将 AWS CDN 设置为在用户浏览器中缓存后过期?
当前方法在部署后过期...
Expires: new Date(new Date().getTime() + (1000 * 60 * 60 * 24 * 7))
使用Javascript。
如果我正确理解你的问题,我建议使用 Cache-Control: max-age=seconds 而不是绝对时间。