谁为请求头设置了 If-Modified-Since?
对于静态内容,如图片、CSS、js等,请求头If-Modified-Since是由Web浏览器设置的还是Web服务器设置的?
For the static content, such as images, CSS, js, etc, the request header If-Modified-Since is set by the web browser or the web server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由 Web 浏览器在 HTTP 请求中设置。
Web 浏览器会将其设置为缓存文件的日期,表示“我已经拥有此文件的 <日期> 版本;仅当此后文件被修改时才再次向我发送该文件。”
Set by the web browser, in the HTTP request.
The web browser will set it to the date that it cached the file, to say "I already have the version of this file from <date>; only send me the file again if it has been modified since then."