- 状态
- 标准
- 浏览器兼容性
- Legend
- 更多可见
- 文档标签和贡献者
HTTP 302
Found
重定向状态码表明请求的资源被暂时的移动到了由Location
头部指定的 URL 上。浏览器会重定向到这个URL, 但是搜索引擎不会对该资源的链接进行更新 (In SEO-speak, it is said that the link-juice is not sent to the new URL)。
即使规范要求浏览器在重定向时保证请求方法和请求主体不变,但并不是所有的用户代理都会遵循这一点,你依然可以看到有缺陷的软件的存在。所以推荐仅在响应 GET
或 HEAD
方法时采用 302 状态码,而在其他时候使用 307
Temporary Redirect 来替代,因为在这些场景下方法变换是明确禁止的。
在确实需要将重定向请求的方法转换为 GET
的场景下,可以使用 303
See Other。例如在使用 PUT
方法进行文件上传操作时,需要返回确认信息(例如“你已经成功上传了xyz”)而不是上传的资源本身,就可以使用这个状态码。
状态
- 302 Found
标准
标准 | 标题 |
---|---|
RFC 7231, section 6.4.3: 302 Found | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content |
浏览器兼容性
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.
Update compatibility data on GitHub
Desktop | Mobile | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | Safari on iOS | Samsung Internet | |
302 | ChromeFull support Yes | EdgeFull support Yes | FirefoxFull support Yes | IEFull support Yes | OperaFull support Yes | SafariFull support Yes | WebView AndroidFull support Yes | Chrome AndroidFull support Yes | Edge MobileFull support Yes | Firefox AndroidFull support Yes | Opera AndroidFull support Yes | Safari iOSFull support Yes | Samsung Internet AndroidFull support Yes |
Legend
- Full support
- Full support
更多可见
307
Temporary Redirect
, the equivalent of this status code, but that never changes the method used.303
See Also
, a temporary redirect that changes the method used toGET
.301
Found
, the temporary redirect.
文档标签和贡献者
标签:
- HTTP
- 状态码
- 重定向
此页面的贡献者:mdnwebdocs-bot, juzhiyuan, WayneCui, ziyunfei, ujsxn, 07akioni
最后编辑者:mdnwebdocs-bot,