添加“过期”提供内容时在标头中添加标签
在标头中添加“EXPIRE”标签是否会强制浏览器缓存内容直到时间到期?
在 PHP 中提供静态图像/css/js 时如何做到这一点?
does adding "EXPIRE" tag in header forces the browser to cache the content till the time expired ?
How to do so while serving an static image/css/js in PHP ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 header 和 gmdate 函数:
始终确保在发送数据之前发送标头,例如:
如果您需要在发送标头之前生成内容,您可以使用 ob 函数:
You can use header and gmdate functions:
Always make sure to send headers before sending data, ex:
If you need generate the content before send header, you can use a ob functions:
对于静态内容,请使用 Web 服务器配置。对于apache,它是.htaccess,对于iis,它是web.config。
For static content use web server config. For apache it's .htaccess, for iis it's web.config.