Back to HTTP Check Tool
3xx · Redirection

307Temporary Redirect

资源临时位于不同 URI,方法和请求体不变。

What is HTTP 307?

307 Temporary Redirect 与 302 类似,但保证重定向时 HTTP 方法和请求体不会改变。如果原请求是 POST,重定向后的请求也是 POST。

Example

POST /api/old → 307 → POST /api/new

Check a URL in real-time

Use our HTTP ping tool to check the actual status code of any URL.

Try httping.io →

Common Use Cases

  • 临时 API 端点迁移
  • 保持 POST 数据的重定向
  • 负载均衡器临时路由

Quick Facts

Code307
Category3xx
TypeRedirection

Related 3xx Codes