<temporary-redirect> ( url -- response )
Furnace framework » HTTP server » HTTP responder redirection

Prev:<permanent-redirect> ( url -- response )
Next:relative-to-request ( url -- url' )


Vocabulary
http.server.redirection

Inputs
urla url or string


Outputs
responsea response


Word description
Redirects to the user to the URL after applying relative-to-request.

Notes
This redirect type should be used with GET requests where the new URL does not always supercede the old one. Use from POST requests with care, since this will cause the browser to resubmit the form to the new URL.

Definition