Temporary Redirect / 302

This page was created to capture redirects by means of a HTTP-302 (Found), also known as temporary redirect.

There is another status code that indicates a temporary redirect and whereas this one (302) is actually titled Found, the other really has the title Temporary Redirect: 307.

The only difference between 307 and 302 is that 307 guarantees that the method and the body will not be changed when the redirected request is made. With 302, some old clients were incorrectly changing the method to GET: the behavior with non-GET methods and 302 is then unpredictable on the Web, whereas the behavior with 307 is predictable. For GET requests, their behavior is identical. https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307