What does HRESULT 0x8019012E (HTTP_E_STATUS_REDIRECT) mean?

 
Previous Next
HTTP_E_STATUS_MOVED HTTP_E_STATUS_REDIRECT_METHOD

HTTP_E_STATUS_REDIRECT

HTTP_E_STATUS_REDIRECT maps to HTTP 302 Found. The requested resource is temporarily available at the URI in the Location header; the client should not treat the original URI as permanently replaced.

What to check

  • Inspect the redirect target and determine whether a login flow, geo-routing rule, or migration rule created it.
  • Check for loops and for redirects that unexpectedly cross host, scheme, or trust boundaries.
  • For POST and other body-bearing requests, verify the client library behaviour because legacy handling of 302 can change the method.

RFC 9110: 302 Found


Looking for a different code? Search another status or error code.