Response.redirect()
The redirect() static method of the Response interface returns a Response resulting in a redirect to the specified URL.
Syntax
Response.redirect(url)
Response.redirect(url, status)
Parameters
url- : The URL that the new response is to originate from.
statusoptional- : An optional status code for the response (e.g.,
302.)
- : An optional status code for the response (e.g.,
Return value
A Response object.
Exceptions
RangeError- : The specified status is not a redirect status.
TypeError- : The specified URL is invalid.