Const
A redirect Response. Sets the status code and the Location header. Defaults to 302 Found.
Response
Location
302 Found
This utility accepts absolute URLs and can navigate to external domains, so the application should validate any user-supplied inputs to redirects.
import { redirect } from "react-router";export async function loader({ request }: Route.LoaderArgs) { if (!isLoggedIn(request)) throw redirect("/login"); } // ...}@public Copy
import { redirect } from "react-router";export async function loader({ request }: Route.LoaderArgs) { if (!isLoggedIn(request)) throw redirect("/login"); } // ...}@public
framework
data
The URL to redirect to.
The status code or a ResponseInit object to be included in the response.
ResponseInit
A Response object with the redirect status and Location header.
A redirect
Response. Sets the status code and theLocationheader. Defaults to302 Found.This utility accepts absolute URLs and can navigate to external domains, so the application should validate any user-supplied inputs to redirects.