TYPO3 Glossary
307 Temporary Redirect
307 Temporary Redirect in TYPO3
The 307 Temporary Redirect is like a 302 redirect but is stricter, keeping the same HTTP request method. For example, if a user sends a POST request, a 307 redirect ensures the redirected page still uses POST rather than switching to GET. In TYPO3, 307 redirects are rarely needed but useful for temporary redirections that need to keep the request method intact.
Suggestions for 307 Temporary Redirect in TYPO3:
- Use for short-term redirections when keeping the HTTP method matters.
- Typically, this is more applicable for complex form submissions or APIs.
- Ensure it’s replaced with a 301 if the change becomes permanent.