You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 301 |`Status::MOVED_PERMANENTLY`| Permanently changed a URL structure. Search engines update their indexes, and browsers cache it. |
105
+
| 308 |`Status::PERMANENT_REDIRECT`| Like 301, but guarantees the HTTP method won't change. |
106
+
| 302 |`Status::FOUND`| Temporary changes like maintenance pages. Original URL should still be used for future requests. Search engines typically don't update their indexes. |
107
+
| 307 |`Status::TEMPORARY_REDIRECT`| Like 302, but guarantees the HTTP method won't change. |
108
+
| 303 |`Status::SEE_OTHER`| After form submissions to prevent duplicate submissions if the user refreshes. Explicitly tells to use `GET` for the redirect, even if the original request was `POST`. |
0 commit comments