How to handle redirects in Next.js
Learn the different ways to handle redirects in Next.js.
There are a few ways you can handle redirects in Next.js. This page will go through each available option, use cases, and how to manage large numbers of redirects.
| API | Purpose | Where | Status Code |
|---|---|---|---|
redirect | Redirect user after a mutation or event | Server Components, Server Actions, Route Handlers | 307 (Temporary) or 303 (Server Action) |
permanentRedirect | Redirect user after a mutation or event | Server Components, Server Actions, Route Handlers | 308 (Permanent) |
useRouter | Perform a client-side navigation | Event Handlers in Client Components | N/A |
redirects in next.config.js | Redirect an incoming request based on a path | next.config.js file | 307 (Temporary) or 308 (Permanent) |
NextResponse.redirect | Redirect an incoming request based on a condition | Proxy | Any |
redirect function
The redirect function allows you to redirect the user to another URL. You can call redirect in Server Components, Route Handlers, and Server Actions.
redirect is often used after a mutation or event. For example, creating a post:
Good to know:
redirectreturns a 307 (Temporary Redirect) status code by default. When used in a Server Action, it returns a 303 (See Other), which is commonly used for redirecting to a success page as a result of a POST request.redirectthrows an error so it should be called outside thetryblock when usingtry/catchstatements.redirectcan be called in Client Components during the rendering process but not in event handlers. You can use theuseRouterhook instead.redirectalso accepts absolute URLs and can be used to redirect to external links.- If you'd like to redirect before the render process, use
next.config.jsor Proxy.
See the redirect API reference for more information.
permanentRedirect function
The permanentRedirect function allows you to permanently redirect the user to another URL. You can call permanentRedirect in Server Components, Route Handlers, and Server Actions.
permanentRedirect is often used after a mutation or event that changes an entity's canonical URL, such as updating a user's profile URL after they change their username:
Good to know:
permanentRedirectreturns a 308 (permanent redirect) status code by default.permanentRedirectalso accepts absolute URLs and can be used to redirect to external links.- If you'd like to redirect before the render process, use
next.config.jsor Proxy.
See the permanentRedirect API reference for more information.
useRouter() hook
If you need to redirect inside an event handler in a Client Component, you can use the push method from the useRouter hook. For example:
Good to know:
- If you don't need to programmatically navigate a user, you should use a
<Link>component.
See the useRouter API reference for more information.
redirects in next.config.js
The redirects option in the next.config.js file allows you to redirect an incoming request path to a different destination path. This is useful when you change the URL structure of pages or have a list of redirects that are known ahead of time.
redirects supports path, header, cookie, and query matching, giving you the flexibility to redirect users based on an incoming request.
To use redirects, add the option to your next.config.js file:
See the redirects API reference for more information.
Good to know:
redirectscan return a 307 (Temporary Redirect) or 308 (Permanent Redirect) status code with thepermanentoption.redirectsmay have a limit on platforms. For example, on Vercel, there's a limit of 1,024 redirects. To manage a large number of redirects (1000+), consider creating a custom solution using Proxy. See managing redirects at scale for more.redirectsruns before Proxy.
NextResponse.redirect in Proxy
Proxy allows you to run code before a request is completed. Then, based on the incoming request, redirect to a different URL using NextResponse.redirect. This is useful if you want to redirect users based on a condition (e.g. authentication, session management, etc) or have a large number of redirects.
For example, to redirect the user to a /login page if they are not authenticated:
Good to know:
- Proxy runs after
redirectsinnext.config.jsand before rendering.
See the Proxy documentation for more information.
Managing redirects at scale (advanced)
To manage a large number of redirects (1000+), you may consider creating a custom solution using Proxy. This allows you to handle redirects programmatically without having to redeploy your application.
To do this, you'll need to consider:
- Creating and storing a redirect map.
- Optimizing data lookup performance.
Next.js Example: See our Proxy with Bloom filter example for an implementation of the recommendations below.
1. Creating and storing a redirect map
A redirect map is a list of redirects that you can store in a database (usually a key-value store) or JSON file.
Consider the following data structure:
In Proxy, you can read from a database such as Vercel's Edge Config or Redis, and redirect the user based on the incoming request:
2. Optimizing data lookup performance
Reading a large dataset for every incoming request can be slow and expensive. There are two ways you can optimize data lookup performance:
- Use a database that is optimized for fast reads
- Use a data lookup strategy such as a Bloom filter to efficiently check if a redirect exists before reading the larger redirects file or database.
Considering the previous example, you can import a generated bloom filter file into Proxy, then, check if the incoming request pathname exists in the bloom filter.
If it does, forward the request to a Route Handler which will check the actual file and redirect the user to the appropriate URL. This avoids importing a large redirects file into Proxy, which can slow down every incoming request.
Then, in the Route Handler:
Good to know:
- To generate a bloom filter, you can use a library like
bloom-filters. - You should validate requests made to your Route Handler to prevent malicious requests.