跳至内容

rewrites

重写允许您将传入的请求路径映射到不同的目标路径。

重写充当 URL 代理并掩盖目标路径,使其看起来用户没有更改其在站点上的位置。相比之下,重定向 将重定向到新页面并显示 URL 更改。

要使用重写,您可以在 next.config.js 中使用 rewrites

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/about',
        destination: '/',
      },
    ]
  },
}

重写应用于客户端路由,<Link href="/about"> 将在上述示例中应用重写。

rewrites 是一个异步函数,它期望返回一个数组或一个数组对象(见下文),其中包含具有 sourcedestination 属性的对象。

  • sourceString - 是传入的请求路径模式。
  • destinationString 是您要路由到的路径。
  • basePathfalseundefined - 如果为 false,则在匹配时不会包含 basePath,只能用于外部重写。
  • localefalseundefined - 是否在匹配时不应包含区域设置。
  • has 是一个 has 对象 数组,具有 typekeyvalue 属性。
  • missing 是一个 missing 对象 数组,具有 typekeyvalue 属性。

rewrites 函数返回一个数组时,在检查文件系统(页面和 /public 文件)并在动态路由之前应用重写。当 rewrites 函数返回一个具有特定形状的数组对象时,此行为可以更改并进行更精细的控制,从 Next.js 的 v10.1 开始。

next.config.js
module.exports = {
  async rewrites() {
    return {
      beforeFiles: [
        // These rewrites are checked after headers/redirects
        // and before all files including _next/public files which
        // allows overriding page files
        {
          source: '/some-page',
          destination: '/somewhere-else',
          has: [{ type: 'query', key: 'overrideMe' }],
        },
      ],
      afterFiles: [
        // These rewrites are checked after pages/public files
        // are checked but before dynamic routes
        {
          source: '/non-existent',
          destination: '/somewhere-else',
        },
      ],
      fallback: [
        // These rewrites are checked after both pages/public files
        // and dynamic routes are checked
        {
          source: '/:path*',
          destination: `https://my-old-site.com/:path*`,
        },
      ],
    }
  },
}

注意beforeFiles 中的重写在匹配源后不会立即检查文件系统/动态路由,它们会继续直到所有 beforeFiles 都已检查。

Next.js 检查路由的顺序为

  1. 检查/应用 headers
  2. 检查/应用 redirects
  3. 检查/应用 beforeFiles 重写
  4. 检查/提供来自 public 目录_next/static 文件和非动态页面的静态文件
  5. 检查/应用 afterFiles 重写,如果匹配其中一个重写,我们将在每次匹配后检查动态路由/静态文件
  6. 检查/应用 fallback 重写,这些在渲染 404 页面之前以及检查动态路由/所有静态资产之后应用。如果您在 getStaticPaths 中使用 fallback: true/'blocking',则您在 next.config.js 中定义的回退 rewrites 不会运行。

重写参数

在重写中使用参数时,默认情况下,当 destination 中未使用任何参数时,参数将传递到查询中。

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/old-about/:path*',
        destination: '/about', // The :path parameter isn't used here so will be automatically passed in the query
      },
    ]
  },
}

如果在 destination 中使用了参数,则不会自动将任何参数传递到查询中。

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/docs/:path*',
        destination: '/:path*', // The :path parameter is used here so will not be automatically passed in the query
      },
    ]
  },
}

如果 destination 中已使用了参数,您仍然可以通过在 destination 中指定查询来手动将参数传递到查询中。

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/:first/:second',
        destination: '/:first?second=:second',
        // Since the :first parameter is used in the destination the :second parameter
        // will not automatically be added in the query although we can manually add it
        // as shown above
      },
    ]
  },
}

注意:来自 自动静态优化预渲染 的静态页面重写参数将在客户端水合后解析并在查询中提供。

路径匹配

允许路径匹配,例如 /blog/:slug 将匹配 /blog/hello-world(没有嵌套路径)

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/blog/:slug',
        destination: '/news/:slug', // Matched parameters can be used in the destination
      },
    ]
  },
}

通配符路径匹配

要匹配通配符路径,您可以在参数后使用*,例如/blog/:slug*将匹配/blog/a/b/c/d/hello-world

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/blog/:slug*',
        destination: '/news/:slug*', // Matched parameters can be used in the destination
      },
    ]
  },
}

正则表达式路径匹配

要匹配正则表达式路径,您可以在参数后用括号括起来正则表达式,例如/blog/:slug(\\d{1,})将匹配/blog/123,但不会匹配/blog/abc

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/old-blog/:post(\\d{1,})',
        destination: '/blog/:post', // Matched parameters can be used in the destination
      },
    ]
  },
}

以下字符(){}[]|\^.:*+-?$用于正则表达式路径匹配,因此当在source中用作非特殊值时,必须在它们前面添加\\进行转义

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        // this will match `/english(default)/something` being requested
        source: '/english\\(default\\)/:slug',
        destination: '/en-us/:slug',
      },
    ]
  },
}

要仅在Header、Cookie或Query值也匹配has字段或不匹配missing字段时才匹配重写,可以使用。source和所有has项都必须匹配,并且所有missing项都必须不匹配,重写才能应用。

hasmissing项可以具有以下字段

  • typeString - 必须是headercookiehostquery
  • keyString - 要匹配的所选类型的键。
  • valueStringundefined - 要检查的值,如果为undefined,则任何值都将匹配。可以使用类似正则表达式的字符串来捕获值的特定部分,例如,如果valuefirst-(?<paramName>.*)用于first-second,则second将在目标中使用:paramName可用。
next.config.js
module.exports = {
  async rewrites() {
    return [
      // if the header `x-rewrite-me` is present,
      // this rewrite will be applied
      {
        source: '/:path*',
        has: [
          {
            type: 'header',
            key: 'x-rewrite-me',
          },
        ],
        destination: '/another-page',
      },
      // if the header `x-rewrite-me` is not present,
      // this rewrite will be applied
      {
        source: '/:path*',
        missing: [
          {
            type: 'header',
            key: 'x-rewrite-me',
          },
        ],
        destination: '/another-page',
      },
      // if the source, query, and cookie are matched,
      // this rewrite will be applied
      {
        source: '/specific/:path*',
        has: [
          {
            type: 'query',
            key: 'page',
            // the page value will not be available in the
            // destination since value is provided and doesn't
            // use a named capture group e.g. (?<page>home)
            value: 'home',
          },
          {
            type: 'cookie',
            key: 'authorized',
            value: 'true',
          },
        ],
        destination: '/:path*/home',
      },
      // if the header `x-authorized` is present and
      // contains a matching value, this rewrite will be applied
      {
        source: '/:path*',
        has: [
          {
            type: 'header',
            key: 'x-authorized',
            value: '(?<authorized>yes|true)',
          },
        ],
        destination: '/home?authorized=:authorized',
      },
      // if the host is `example.com`,
      // this rewrite will be applied
      {
        source: '/:path*',
        has: [
          {
            type: 'host',
            value: 'example.com',
          },
        ],
        destination: '/another-page',
      },
    ]
  },
}

重写到外部URL

示例

重写允许您重写到外部URL。这对于增量采用Next.js尤其有用。以下是将主应用程序的/blog路由重定向到外部站点的重写示例。

next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/blog',
        destination: 'https://example.com/blog',
      },
      {
        source: '/blog/:slug',
        destination: 'https://example.com/blog/:slug', // Matched parameters can be used in the destination
      },
    ]
  },
}

如果您正在使用trailingSlash: true,则还需要在source参数中插入尾部斜杠。如果目标服务器也期望尾部斜杠,则也应将其包含在destination参数中。

next.config.js
module.exports = {
  trailingSlash: true,
  async rewrites() {
    return [
      {
        source: '/blog/',
        destination: 'https://example.com/blog/',
      },
      {
        source: '/blog/:path*/',
        destination: 'https://example.com/blog/:path*/',
      },
    ]
  },
}

增量采用Next.js

您还可以让Next.js在检查所有Next.js路由后回退到代理到现有网站。

这样,您就不必在将更多页面迁移到Next.js时更改重写配置。

next.config.js
module.exports = {
  async rewrites() {
    return {
      fallback: [
        {
          source: '/:path*',
          destination: `https://custom-routes-proxying-endpoint.vercel.app/:path*`,
        },
      ],
    }
  },
}

支持basePath的重写

当利用basePath支持和重写时,每个sourcedestination都会自动加上basePath前缀,除非您在重写中添加basePath: false

next.config.js
module.exports = {
  basePath: '/docs',
 
  async rewrites() {
    return [
      {
        source: '/with-basePath', // automatically becomes /docs/with-basePath
        destination: '/another', // automatically becomes /docs/another
      },
      {
        // does not add /docs to /without-basePath since basePath: false is set
        // Note: this can not be used for internal rewrites e.g. `destination: '/another'`
        source: '/without-basePath',
        destination: 'https://example.com',
        basePath: false,
      },
    ]
  },
}

支持i18n的重写

当利用i18n支持和重写时,每个sourcedestination都会自动加上前缀以处理配置的locales,除非您在重写中添加locale: false。如果使用locale: false,则必须为sourcedestination加上语言环境前缀才能正确匹配。

next.config.js
module.exports = {
  i18n: {
    locales: ['en', 'fr', 'de'],
    defaultLocale: 'en',
  },
 
  async rewrites() {
    return [
      {
        source: '/with-locale', // automatically handles all locales
        destination: '/another', // automatically passes the locale on
      },
      {
        // does not handle locales automatically since locale: false is set
        source: '/nl/with-locale-manual',
        destination: '/nl/another',
        locale: false,
      },
      {
        // this matches '/' since `en` is the defaultLocale
        source: '/en',
        destination: '/en/another',
        locale: false,
      },
      {
        // it's possible to match all locales even when locale: false is set
        source: '/:locale/api-alias/:path*',
        destination: '/api/:path*',
        locale: false,
      },
      {
        // this gets converted to /(en|fr|de)/(.*) so will not match the top-level
        // `/` or `/fr` routes like /:path* would
        source: '/(.*)',
        destination: '/another',
      },
    ]
  },
}

版本历史

版本更改
v13.3.0添加了missing
v10.2.0添加了has
v9.5.0添加了Headers。