重定向
重定向允许您将传入的请求路径指向不同的目标路径。
要使用重定向功能,可以在 next.config.js
中使用 redirects
键:
module.exports = {
async redirects() {
return [
{
source: '/about',
destination: '/',
permanent: true,
},
]
},
}
redirects
是一个异步函数,需要返回一个包含对象的数组,这些对象具有 source
、destination
和 permanent
属性:
source
:传入的请求路径模式destination
:您想要路由到的目标路径permanent
:true
或false
- 如果为true
,将使用 308 状态码,指示客户端/搜索引擎永久缓存此重定向;如果为false
,则使用 307 临时状态码且不会被缓存
为什么 Next.js 使用 307 和 308? 传统上 302 用于临时重定向,301 用于永久重定向,但许多浏览器会将重定向请求方法改为
GET
,而不管原始方法是什么。例如,如果浏览器向POST /v1/users
发起请求并收到状态码302
和位置/v2/users
,后续请求可能会变成GET /v2/users
而非预期的POST /v2/users
。Next.js 使用 307 临时重定向和 308 永久重定向状态码来明确保留所使用的请求方法。
basePath
:false
或undefined
- 如果为 false,匹配时将不包含basePath
,仅用于外部重定向locale
:false
或undefined
- 匹配时是否不包含语言环境has
:包含type
、key
和value
属性的 has 对象数组missing
:包含type
、key
和value
属性的 missing 对象数组
重定向检查优先于文件系统(包括页面和 /public
文件)。
重定向不会应用于客户端路由(Link
、router.push
),除非存在 中间件 且匹配路径。
应用重定向时,请求中提供的任何查询值都将传递到重定向目标。例如,参见以下重定向配置:
{
source: '/old-blog/:path*',
destination: '/blog/:path*',
permanent: false
}
当请求 /old-blog/post-1?hello=world
时,客户端将被重定向到 /blog/post-1?hello=world
。
路径匹配
允许路径匹配,例如 /old-blog/:slug
将匹配 /old-blog/hello-world
(不包括嵌套路径):
module.exports = {
async redirects() {
return [
{
source: '/old-blog/:slug',
destination: '/news/:slug', // 匹配的参数可用于目标路径
permanent: true,
},
]
},
}
通配符路径匹配
要匹配通配符路径,可以在参数后使用 *
,例如 /blog/:slug*
将匹配 /blog/a/b/c/d/hello-world
:
module.exports = {
async redirects() {
return [
{
source: '/blog/:slug*',
destination: '/news/:slug*', // 匹配的参数可用于目标路径
permanent: true,
},
]
},
}
正则表达式路径匹配
要匹配正则表达式路径,可以将正则表达式包裹在参数后的括号中,例如 /post/:slug(\\d{1,})
将匹配 /post/123
但不匹配 /post/abc
:
module.exports = {
async redirects() {
return [
{
source: '/post/:slug(\\d{1,})',
destination: '/news/:slug', // 匹配的参数可用于目标路径
permanent: false,
},
]
},
}
以下字符 (
、)
、{
、}
、:
、*
、+
、?
用于正则表达式路径匹配,因此当在 source
中作为非特殊值使用时,必须通过在前面添加 \\
进行转义:
module.exports = {
async redirects() {
return [
{
// 这将匹配请求 `/english(default)/something`
source: '/english\\(default\\)/:slug',
destination: '/en-us/:slug',
permanent: false,
},
]
},
}
头部、Cookie 和查询匹配
要仅在头部、cookie 或查询值也匹配 has
字段或不匹配 missing
字段时才应用重定向。source
和所有 has
项必须匹配,且所有 missing
项必须不匹配才会应用重定向。
has
和 missing
项可以包含以下字段:
type
:String
- 必须是header
、cookie
、host
或query
之一key
:String
- 要匹配的选定类型的键value
:String
或undefined
- 要检查的值,如果为 undefined 则匹配任何值。可以使用类似正则表达式的字符串捕获值的特定部分,例如如果对first-second
使用值first-(?<paramName>.*)
,则可以在目标中使用:paramName
来引用second
module.exports = {
async redirects() {
return [
// 如果存在 `x-redirect-me` 头部,
// 将应用此重定向
{
source: '/:path((?!another-page$).*)',
has: [
{
type: 'header',
key: 'x-redirect-me',
},
],
permanent: false,
destination: '/another-page',
},
// 如果存在 `x-dont-redirect` 头部,
// 将不应用此重定向
{
source: '/:path((?!another-page$).*)',
missing: [
{
type: 'header',
key: 'x-do-not-redirect',
},
],
permanent: false,
destination: '/another-page',
},
// 如果源路径、查询和 cookie 都匹配,
// 将应用此重定向
{
source: '/specific/:path*',
has: [
{
type: 'query',
key: 'page',
// 由于提供了值且未使用命名捕获组(如 `(?<page>home)`),
// page 值在目标路径中不可用
value: 'home',
},
{
type: 'cookie',
key: 'authorized',
value: 'true',
},
],
permanent: false,
destination: '/another/:path*',
},
// 如果存在 `x-authorized` 头部且包含匹配值,
// 将应用此重定向
{
source: '/',
has: [
{
type: 'header',
key: 'x-authorized',
value: '(?<authorized>yes|true)',
},
],
permanent: false,
destination: '/home?authorized=:authorized',
},
// 如果主机是 `example.com`,
// 将应用此重定向
{
source: '/:path((?!another-page$).*)',
has: [
{
type: 'host',
value: 'example.com',
},
],
permanent: false,
destination: '/another-page',
},
]
},
}
支持 basePath 的重定向
当结合 basePath
支持 使用重定向时,每个 source
和 destination
会自动添加 basePath
前缀,除非您在重定向中添加 basePath: false
:
module.exports = {
basePath: '/docs',
async redirects() {
return [
{
source: '/with-basePath', // 自动变为 /docs/with-basePath
destination: '/another', // 自动变为 /docs/another
permanent: false,
},
{
// 不添加 /docs,因为设置了 basePath: false
source: '/without-basePath',
destination: 'https://example.com',
basePath: false,
permanent: false,
},
]
},
}
支持 i18n 的重定向
当结合 i18n
支持 使用重定向时,每个 source
和 destination
会自动添加前缀以处理配置的 locales
,除非您在重定向中添加 locale: false
。如果使用 locale: false
,则必须在 source
和 destination
前添加语言环境才能正确匹配。
module.exports = {
i18n: {
locales: ['en', 'fr', 'de'],
defaultLocale: 'en',
},
async redirects() {
return [
{
source: '/with-locale', // 自动处理所有语言环境
destination: '/another', // 自动传递语言环境
permanent: false,
},
{
// 不自动处理语言环境,因为设置了 locale: false
source: '/nl/with-locale-manual',
destination: '/nl/another',
locale: false,
permanent: false,
},
{
// 这将匹配 '/',因为 `en` 是默认语言环境
source: '/en',
destination: '/en/another',
locale: false,
permanent: false,
},
// 即使设置了 locale: false,也可以匹配所有语言环境
{
source: '/:locale/page',
destination: '/en/newpage',
permanent: false,
locale: false,
},
{
// 这将转换为 /(en|fr|de)/(.*),因此不会匹配顶级
// `/` 或 `/fr` 路由,像 /:path* 那样
source: '/(.*)',
destination: '/another',
permanent: false,
},
]
},
}
在某些罕见情况下,您可能需要为旧版 HTTP 客户端分配自定义状态码以实现正确重定向。在这些情况下,您可以使用 statusCode
属性代替 permanent
属性,但不能同时使用两者。为确保 IE11 兼容性,308 状态码会自动添加 Refresh
头部。
其他重定向方式
- 在 API 路由 内部,您可以使用
res.redirect()
- 在
getStaticProps
和getServerSideProps
内部,您可以在请求时重定向特定页面
版本历史
版本 | 变更 |
---|---|
v13.3.0 | 添加 missing |
v10.2.0 | 添加 has |
v9.5.0 | 添加 redirects |