Redirection

307 307 Temporary Redirect

Like 302, but the method and body must be preserved — a POST stays a POST. Also what browsers use internally when a site is on the HSTS preload list.

Common causes

  • HSTS upgrading http:// to https:// before a request leaves the browser.
  • APIs redirecting a POST without turning it into a GET.

How to fix it

  • Normal. A 307 in a redirect chain from HSTS costs nothing — it never touches the network.

See what a site actually returns

Run a live check and read the real status code, headers and timings.

Check a website