为什么Web服务器响应“304 Not Modified”当没有 Etag 且没有“If-Modified-Since”时位于请求标头中
我从Web服务器返回
304 Not Modified
,但在Firebug中,请求标头没有Etag,也没有If-Modified-Since
,我查看了所有标头行,没有根本没有日期时间信息,那么服务器如何知道内容没有被修改呢?
I get back
304 Not Modified
from the web server, but in Firebug, the request header doesn't have Etag and doesn't have If-Modified-Since
, and I looked at all the header line and there was no datetime info at all, so how does the server know the content is not modified?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“ETag”标头由服务器在响应中发送 - 客户端将“If-None-Match”连同 ETag 值发送回服务器(如果服务器已缓存)。
The "ETag" header is sent by the server in the response - the client sends an "If-None-Match" back to the server with the ETag value if it already has it cached.