요약
The resource temporarily resides at a different URL; keep using the original URL.
언제 발생하나
Returned for a temporary redirect; historically browsers changed the method to GET.
흔한 원인
- Temporary maintenance or A/B redirect
- Post-login redirect to a landing page
- Legacy code using 302 where 303 or 307 is meant
해결 방법
- Use 303 for POST-then-GET flows
- Use 307 to preserve the original method
- Reserve 301/308 for permanent moves