小樱 发表于 2018/2/9 03:09

302跳转并且写入浏览器缓存多少秒可以实现么 Cache-Control: max-age=86400缓存一天

It shouldn't be cached at all unless there's also a Cache-Control or Expires header returned by the web server. According to RFC 2616, section 10.3.3 302 Found Cache-Control and Expires.


例如输出头加入Cache-Control: max-age=86400,即可缓存一天在浏览器,才会二次请求服务端进行302

301默认会强制缓存五年4个月时间,当然,也可以使用Cache-Control: max-age=86400来缓存一天时间

页: [1]
查看完整版本: 302跳转并且写入浏览器缓存多少秒可以实现么 Cache-Control: max-age=86400缓存一天