307 Temporary Redirect - HTTP 编辑
HTTP 307 Temporary Redirect
redirect status response code indicates that the resource requested has been temporarily moved to the URL given by the Location
headers.
The method and the body of the original request are reused to perform the redirected request. In the cases where you want the method used to be changed to GET
, use 303 See Other
instead. This is useful when you want to give an answer to a PUT
method that is not the uploaded resources, but a confirmation message (like "You successfully uploaded XYZ").
The only difference between 307
and 302
is that 307
guarantees that the method and the body will not be changed when the redirected request is made. With 302
, some old clients were incorrectly changing the method to GET
: the behavior with non-GET
methods and 302
is then unpredictable on the Web, whereas the behavior with 307
is predictable. For GET
requests, their behavior is identical.
Status
307 Temporary Redirect
Specifications
Specification | Title |
---|---|
RFC 7231, section 6.4.7: 307 Temporary Redirect | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content |
Browser compatibility
BCD tables only load in the browser
See also
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论