外观
重定向
重定向
在 Next.js 中有几种处理重定向的方法。本页将介绍每种可用选项、使用场景以及如何管理大量重定向。
API | 用途 | 使用位置 | 状态码 |
---|---|---|---|
redirect | 在变更或事件后重定向用户 | 服务器组件、服务器操作、路由处理程序 | 307 (临时) 或 303 (服务器操作) |
permanentRedirect | 在变更或事件后重定向用户 | 服务器组件、服务器操作、路由处理程序 | 308 (永久) |
useRouter | 执行客户端导航 | 客户端组件中的事件处理程序 | 不适用 |
redirects in next.config.js | 基于路径重定向传入请求 | next.config.js 文件 | 307 (临时) 或 308 (永久) |
NextResponse.redirect | 基于条件重定向传入请求 | 中间件 | 任意 |
redirect
函数
redirect
函数允许你将用户重定向到另一个 URL。你可以在服务器组件、路由处理程序和服务器操作中调用 redirect
。
redirect
通常在变更或事件之后使用。例如,创建一篇文章后:
app/actions.tsx
'use server'
import { redirect } from 'next/navigation'
import { revalidatePath } from 'next/cache'
export async function createPost(id: string) {
try {
// Call database
} catch (error) {
// Handle errors
}
revalidatePath('/posts') // Update cached posts
redirect(`/post/${id}`) // Navigate to the new post page
}
app/actions.js
'use server'
import { redirect } from 'next/navigation'
import { revalidatePath } from 'next/cache'
export async function createPost(id) {
try {
// Call database
} catch (error) {
// Handle errors
}
revalidatePath('/posts') // Update cached posts
redirect(`/post/${id}`) // Navigate to the new post page
}
注意
redirect
默认返回 307 (临时重定向) 状态码。当在服务器操作中使用时,它返回 303 (查看其他),这通常用于在 POST 请求后重定向到成功页面。redirect
内部会抛出错误,所以应该在try/catch
块之外调用。redirect
可以在客户端组件的渲染过程中调用,但不能在事件处理程序中调用。你可以使用useRouter
hook 代替。redirect
也接受绝对 URL,可用于重定向到外部链接。- 如果你想在渲染过程之前重定向,请使用
next.config.js
或中间件。
更多信息请参阅 redirect
API 参考。
permanentRedirect
函数
permanentRedirect
函数允许你永久重定向用户到另一个 URL。你可以在服务器组件、路由处理程序和服务器操作中调用 permanentRedirect
。
permanentRedirect
通常在改变实体的规范 URL 的变更或事件之后使用,例如在用户更改用户名后更新其个人资料 URL:
app/actions.ts
'use server'
import { permanentRedirect } from 'next/navigation'
import { revalidateTag } from 'next/cache'
export async function updateUsername(username: string, formData: FormData) {
try {
// Call database
} catch (error) {
// Handle errors
}
revalidateTag('username') // Update all references to the username
permanentRedirect(`/profile/${username}`) // Navigate to the new user profile
}
app/actions.js
'use server'
import { permanentRedirect } from 'next/navigation'
import { revalidateTag } from 'next/cache'
export async function updateUsername(username, formData) {
try {
// Call database
} catch (error) {
// Handle errors
}
revalidateTag('username') // Update all references to the username
permanentRedirect(`/profile/${username}`) // Navigate to the new user profile
}
提示
permanentRedirect
默认返回 308 (永久重定向) 状态码。permanentRedirect
也接受绝对 URL,可用于重定向到外部链接。- 如果你想在渲染过程之前重定向,请使用
next.config.js
或中间件。
更多信息请参阅 permanentRedirect
API 参考。
useRouter()
hook
如果你需要在客户端组件的事件处理程序中重定向,可以使用 useRouter
hook 的 push
方法。例如:
app/page.tsx
'use client'
import { useRouter } from 'next/navigation'
export default function Page() {
const router = useRouter()
return (
<button type="button" onClick={() => router.push('/dashboard')}>
Dashboard
</button>
)
}
app/page.js
'use client'
import { useRouter } from 'next/navigation'
export default function Page() {
const router = useRouter()
return (
<button type="button" onClick={() => router.push('/dashboard')}>
Dashboard
</button>
)
}
注意
- 如果你不需要以编程方式导航用户,应该使用
<Link>
组件。
更多信息请参阅 useRouter
API 参考。
next.config.js
中的 redirects
next.config.js
文件中的 redirects
选项允许你将传入的请求路径重定向到不同的目标路径。当你更改页面的 URL 结构或有一个预先知道的重定向列表时,这非常有用。
redirects
支持路径、头部、cookie 和查询匹配,让你可以根据传入的请求灵活地重定向用户。
要使用 redirects
,请将该选项添加到你的 next.config.js
文件中:
next.config.js
module.exports = {
async redirects() {
return [
// Basic redirect
{
source: '/about',
destination: '/',
permanent: true,
},
// Wildcard path matching
{
source: '/blog/:slug',
destination: '/news/:slug',
permanent: true,
},
]
},
}
更多信息请参阅 redirects
API 参考。
注意
中间件中的 NextResponse.redirect
中间件允许你在请求完成之前运行代码。然后,根据传入的请求,使用 NextResponse.redirect
重定向到不同的 URL。如果你想根据条件(例如身份验证、会话管理等)重定向用户或有大量重定向,这非常有用。
例如,如果用户未经身份验证,将其重定向到 /login
页面:
middleware.ts
import { NextResponse, NextRequest } from 'next/server'
import { authenticate } from 'auth-provider'
export function middleware(request: NextRequest) {
const isAuthenticated = authenticate(request)
// If the user is authenticated, continue as normal
if (isAuthenticated) {
return NextResponse.next()
}
// Redirect to login page if not authenticated
return NextResponse.redirect(new URL('/login', request.url))
}
export const config = {
matcher: '/dashboard/:path*',
}
middleware.js
import { NextResponse } from 'next/server'
import { authenticate } from 'auth-provider'
export function middleware(request) {
const isAuthenticated = authenticate(request)
// If the user is authenticated, continue as normal
if (isAuthenticated) {
return NextResponse.next()
}
// Redirect to login page if not authenticated
return NextResponse.redirect(new URL('/login', request.url))
}
export const config = {
matcher: '/dashboard/:path*',
}
注意
- 中间件在
next.config.js
中的redirects
之后和渲染之前运行。
更多信息请参阅中间件文档。
大规模管理重定向 (高级)
要管理大量重定向(1000+),你可以考虑使用中间件创建自定义解决方案。这允许你以编程方式处理重定向,而无需重新部署应用程序。
要做到这一点,你需要考虑:
- 创建和存储重定向映射。
- 优化数据查找性能。
提示
Next.js 示例: 请参阅我们的带有布隆过滤器的中间件示例,了解以下建议的实现。
1. 创建和存储重定向映射
重定向映射是可以存储在数据库(通常是键值存储)或 JSON 文件中的重定向列表。
考虑以下数据结构:
{
"/old": {
"destination": "/new",
"permanent": true
},
"/blog/post-old": {
"destination": "/blog/post-new",
"permanent": true
}
}
在中间件中,你可以从数据库(如 Vercel 的 Edge Config 或 Redis)中读取,并根据传入的请求重定向用户:
middleware.ts
import { NextResponse, NextRequest } from 'next/server'
import { get } from '@vercel/edge-config'
type RedirectEntry = {
destination: string
permanent: boolean
}
export async function middleware(request: NextRequest) {
const pathname = request.nextUrl.pathname
const redirectData = await get(pathname)
if (redirectData && typeof redirectData === 'string') {
const redirectEntry: RedirectEntry = JSON.parse(redirectData)
const statusCode = redirectEntry.permanent ? 308 : 307
return NextResponse.redirect(redirectEntry.destination, statusCode)
}
// No redirect found, continue without redirecting
return NextResponse.next()
}
middleware.js
import { NextResponse } from 'next/server'
import { get } from '@vercel/edge-config'
export async function middleware(request) {
const pathname = request.nextUrl.pathname
const redirectData = await get(pathname)
if (redirectData) {
const redirectEntry = JSON.parse(redirectData)
const statusCode = redirectEntry.permanent ? 308 : 307
return NextResponse.redirect(redirectEntry.destination, statusCode)
}
// No redirect found, continue without redirecting
return NextResponse.next()
}
2. 优化数据查找性能
对每个传入的请求读取大型数据集可能会很慢且昂贵。有两种方法可以优化数据查找性能:
- 使用针对快速读取进行优化的数据库,如 Vercel Edge Config 或 Redis。
- 使用数据查找策略,如布隆过滤器,在读取较大的重定向文件或数据库之前高效地检查重定向是否存在。
考虑前面的例子,你可以将生成的布隆过滤器文件导入到中间件中,然后检查传入请求的路径名是否存在于布隆过滤器中。
如果存在,将请求转发到路由处理程序,该处理程序将检查实际文件并将用户重定向到适当的 URL。这避免了将大型重定向文件导入中间件,这可能会减慢每个传入请求的速度。
middleware.ts
import { NextResponse, NextRequest } from 'next/server'
import { ScalableBloomFilter } from 'bloom-filters'
import GeneratedBloomFilter from './redirects/bloom-filter.json'
type RedirectEntry = {
destination: string
permanent: boolean
}
// Initialize bloom filter from a generated JSON file
const bloomFilter = ScalableBloomFilter.fromJSON(GeneratedBloomFilter as any)
export async function middleware(request: NextRequest) {
// Get the path for the incoming request
const pathname = request.nextUrl.pathname
// Check if the path is in the bloom filter
if (bloomFilter.has(pathname)) {
// Forward the pathname to the Route Handler
const api = new URL(
`/api/redirects?pathname=${encodeURIComponent(request.nextUrl.pathname)}`,
request.nextUrl.origin
)
try {
// Fetch redirect data from the Route Handler
const redirectData = await fetch(api)
if (redirectData.ok) {
const redirectEntry: RedirectEntry | undefined =
await redirectData.json()
if (redirectEntry) {
// Determine the status code
const statusCode = redirectEntry.permanent ? 308 : 307
// Redirect to the destination
return NextResponse.redirect(redirectEntry.destination, statusCode)
}
}
} catch (error) {
console.error(error)
}
}
// No redirect found, continue the request without redirecting
return NextResponse.next()
}
middleware.js
import { NextResponse } from 'next/server'
import { ScalableBloomFilter } from 'bloom-filters'
import GeneratedBloomFilter from './redirects/bloom-filter.json'
// Initialize bloom filter from a generated JSON file
const bloomFilter = ScalableBloomFilter.fromJSON(GeneratedBloomFilter)
export async function middleware(request) {
// Get the path for the incoming request
const pathname = request.nextUrl.pathname
// Check if the path is in the bloom filter
if (bloomFilter.has(pathname)) {
// Forward the pathname to the Route Handler
const api = new URL(
`/api/redirects?pathname=${encodeURIComponent(request.nextUrl.pathname)}`,
request.nextUrl.origin
)
try {
// Fetch redirect data from the Route Handler
const redirectData = await fetch(api)
if (redirectData.ok) {
const redirectEntry = await redirectData.json()
if (redirectEntry) {
// Determine the status code
const statusCode = redirectEntry.permanent ? 308 : 307
// Redirect to the destination
return NextResponse.redirect(redirectEntry.destination, statusCode)
}
}
} catch (error) {
console.error(error)
}
}
// No redirect found, continue the request without redirecting
return NextResponse.next()
}
Then, in the Route Handler:
app/redirects/route.ts
import { NextRequest, NextResponse } from 'next/server'
import redirects from '@/app/redirects/redirects.json'
type RedirectEntry = {
destination: string
permanent: boolean
}
export function GET(request: NextRequest) {
const pathname = request.nextUrl.searchParams.get('pathname')
if (!pathname) {
return new Response('Bad Request', { status: 400 })
}
// Get the redirect entry from the redirects.json file
const redirect = (redirects as Record<string, RedirectEntry>)[pathname]
// Account for bloom filter false positives
if (!redirect) {
return new Response('No redirect', { status: 400 })
}
// Return the redirect entry
return NextResponse.json(redirect)
}
app/redirects/route.js
import { NextResponse } from 'next/server'
import redirects from '@/app/redirects/redirects.json'
export function GET(request) {
const pathname = request.nextUrl.searchParams.get('pathname')
if (!pathname) {
return new Response('Bad Request', { status: 400 })
}
// Get the redirect entry from the redirects.json file
const redirect = redirects[pathname]
// Account for bloom filter false positives
if (!redirect) {
return new Response('No redirect', { status: 400 })
}
// Return the redirect entry
return NextResponse.json(redirect)
}
提示
要生成布隆过滤器,你可以使用类似bloom-filters
. 您应该验证对路由处理程序发出的请求,以防止恶意请求。