Cache-control使用Cache-control:private学习笔记
摘要:
其作用根据不同的重新浏览方式,分为以下几种情况:(1)、打开新窗口值为private、no-cache、must-revalidate,那么打开新窗口访问时都会重新访问服务器。而如果指定了max-age值,那么在此值内的时间里就不会重新访问服务器,例如:Cache-control: max-age=5(表示当访问此网页后的5秒内再次访问不会去服务器)(2)、在地址栏回车值为private或must-revalidate则只有第一次访问时会访问服务器,以后就不再访问。值为no-cache,那么每次都会访问。值为max-age,则在过期之前不会重复访问。(3)、按后退按扭值为private、mus 阅读全文
posted @ 2013-10-24 18:05 追忆-php 阅读(359) 评论(0) 推荐(0) 编辑