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
Redirects now append the querystring from the original request
When a request /oldLocation?foo=bar has a querystring, the params are now appended to the Location header: Location: /newLocation?foo=bar.
Redirects are no longer cached by CloudFront
All redirects issued by the proxy module use Cache-Control: public, max-age=0, must-revalidate now.
It was Cache-Control: public, max-age=31536000, immutable previously.
This mimics the same behaviour as how Vercel handles it.
Redirects now issue a response
Previously redirects had no content, now a plaintext response is returned, e.g. Redirecting to /newLocation?foo=bar (308).