欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

html怎么设置http头部缓存

程序员文章站 2024-01-04 19:19:28
...
像php可以这样设置头部缓存
header("Cache-Control: no-store, no-cache");
html怎么设置头部缓存?
具体的说html怎么设置响应头
Cache-Control: no-cache

回复内容:

像php可以这样设置头部缓存
header("Cache-Control: no-store, no-cache");
html怎么设置头部缓存?
具体的说html怎么设置响应头
Cache-Control: no-cache

用于设定网页的到期时间,一旦过期则必须到服务器上重新调用。需要注意的是必须使用GMT时间格式;

用于设定禁止浏览器从本地机的缓存中调阅页面内容,设定后一旦离开网页就无法从Cache中再调出;

相关标签: html php

上一篇:

下一篇: