HTTP status codes / 3xx — Redirection
307 Temporary Redirect
What it means
Like 302, but strict: the client must repeat the request to the new URL with the same method and body. A POST stays a POST.
What causes it
Modern services preferring predictable redirect semantics; HSTS internal redirects in browsers.
How to fix it
Nothing — this is the well-behaved temporary redirect. Use it over 302 when method preservation matters.