← All Status Codes
307
Temporary Redirect
↪️ Redirection Low Risk

📖 What Is HTTP 307?

The resource temporarily resides at a different URL. Unlike 302, the HTTP method and body are preserved during the redirect.

🛡️ Security Implications

Method preservation means a POST with credentials will be re-sent to the redirect target. Ensure the target is trusted.

🔍 Common Causes

HSTS redirect (HTTP to HTTPS), load balancer routing, temporary maintenance redirect preserving POST data.

🔧 How to Fix

Verify redirect targets are trusted since the original request method and body are preserved.

🖥️ How to Check

curl -I -o /dev/null -w "%{http_code}" https://example.com