307 Temporary Redirect - HTTP 编辑
HTTP 307 Temporary Redirect
,临时重定向响应状态码,表示请求的资源暂时地被移动到了响应的 Location
首部所指向的 URL 上。
原始请求中的请求方法和消息主体会在重定向请求中被重用。在确实需要将重定向请求的方法转换为 GET
的场景下,可以考虑使用 303 See Other
状态码。例如,在使用 PUT
方法进行文件上传操作时,如果需要返回一条确认信息(例如“你已经成功上传了 XYZ”),而不是返回上传的资源本身,就可以使用这个状态码。
状态码 307
与 302
之间的唯一区别在于,当发送重定向请求的时候,307
状态码可以确保请求方法和消息主体不会发生变化。如果使用 302
响应状态码,一些旧客户端会错误地将请求方法转换为 GET
:也就是说,在 Web 中,如果使用了 GET
以外的请求方法,且返回了 302
状态码,则重定向后的请求方法是不可预测的;但如果使用 307
状态码,之后的请求方法就是可预测的。对于 GET
请求来说,两种情况没有区别。
状态码
307 Temporary Redirect
规范
规范 | 标题 |
---|---|
RFC 7231, section 6.4.7: 307 Temporary Redirect | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content |
浏览器兼容性
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
参见
302 Found
, the equivalent of this status code, but that may change the method used when it is not aGET
.303 See Other
, a temporary redirect that changes the method used toGET
.301 Moved Permanently
, a permanent redirect
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论