🔗HTTP Redirect

The HTTP Redirect node is used to redirect the client (browser) to a new URL.

Options

URL

This is the URL to which the client will be redirected.

Output

Returns a HTML response with the status code 307 (temporary redirect). The response includes a 'Location' header specifying the URL to which the client should be redirected. Once the client receives the redirect response, the client's browser (or other HTTP client) will navigate to the new location specified in the 'Location' header. This is done automatically by the browser without any action required from the user.

Last updated