如何防止服务器回复304?
我需要知道可以采取哪些步骤来防止服务器回复 304。
I need to know the steps that I can do to prevent the server from replying with 304.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要知道可以采取哪些步骤来防止服务器回复 304。
I need to know the steps that I can do to prevent the server from replying with 304.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您的客户端可能正在发送“If-Modified-Since”标头。不要发送它,你应该没问题。
标头和 304 回复的目的是,如果客户端已经拥有最新数据(根据标头“If-Modified-Since”),则没有必要再次下载它。
Your client is probably sending an 'If-Modified-Since' header. Don't send it and you should be fine.
The intent of the header and the 304 reply is that if the client already has the latest data (as per the header 'If-Modified-Since'), there is no point in downloading it again.
如果自特定日期以来内容没有被修改,服务器将发送 304。该日期是通过客户端的 IF_MODIFIED_SINCE 标头设置的。请参阅此处了解更多详细信息。
The server will send a 304 if the content has not been modified since a particular date. That date is set via the client's IF_MODIFIED_SINCE header. See here for more details.
我认识到这样做不是一个好主意。
但是,如果您需要这样做,您可以在服务器中放置一些过滤器来重置
IF_MODIFIED_SINCE
请求标记的值。I recognized that It is not a good idea to do so.
However, If you need to do so, You can put some filter in the server to reset the value of
IF_MODIFIED_SINCE
request tag.