如何防止服务器回复304?

发布于 2024-12-20 23:13:09 字数 33 浏览 2 评论 0原文

我需要知道可以采取哪些步骤来防止服务器回复 304。

I need to know the steps that I can do to prevent the server from replying with 304.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

生来就爱笑 2024-12-27 23:13:09

您的客户端可能正在发送“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.

ぽ尐不点ル 2024-12-27 23:13:09

如果自特定日期以来内容没有被修改,服务器将发送 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.

司马昭之心 2024-12-27 23:13:09

我认识到这样做不是一个好主意。

但是,如果您需要这样做,您可以在服务器中放置一些过滤器来重置 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文