跳至内容

headers

标头允许您在给定路径上的传入请求的响应中设置自定义 HTTP 标头。

要设置自定义 HTTP 标头,您可以在 next.config.js 中使用 headers 键。

next.config.js
module.exports = {
  async headers() {
    return [
      {
        source: '/about',
        headers: [
          {
            key: 'x-custom-header',
            value: 'my custom header value',
          },
          {
            key: 'x-another-custom-header',
            value: 'my other custom header value',
          },
        ],
      },
    ]
  },
}

headers 是一个异步函数,它期望返回一个数组,该数组包含具有 sourceheaders 属性的对象。

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

在包含页面和 /public 文件的文件系统之前检查标头。

标头覆盖行为

如果两个标头匹配相同的路径并设置相同的标头键,则最后一个标头键将覆盖第一个。使用以下标头,路径 /hello 将导致标头 x-helloworld,因为设置的最后一个标头值为 world

next.config.js
module.exports = {
  async headers() {
    return [
      {
        source: '/:path*',
        headers: [
          {
            key: 'x-hello',
            value: 'there',
          },
        ],
      },
      {
        source: '/hello',
        headers: [
          {
            key: 'x-hello',
            value: 'world',
          },
        ],
      },
    ]
  },
}

路径匹配

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

next.config.js
module.exports = {
  async headers() {
    return [
      {
        source: '/blog/:slug',
        headers: [
          {
            key: 'x-slug',
            value: ':slug', // Matched parameters can be used in the value
          },
          {
            key: 'x-slug-:slug', // Matched parameters can be used in the key
            value: 'my other custom header value',
          },
        ],
      },
    ]
  },
}

通配符路径匹配

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

next.config.js
module.exports = {
  async headers() {
    return [
      {
        source: '/blog/:slug*',
        headers: [
          {
            key: 'x-slug',
            value: ':slug*', // Matched parameters can be used in the value
          },
          {
            key: 'x-slug-:slug*', // Matched parameters can be used in the key
            value: 'my other custom header value',
          },
        ],
      },
    ]
  },
}

正则表达式路径匹配

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

next.config.js
module.exports = {
  async headers() {
    return [
      {
        source: '/blog/:post(\\d{1,})',
        headers: [
          {
            key: 'x-post',
            value: ':post',
          },
        ],
      },
    ]
  },
}

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

next.config.js
module.exports = {
  async headers() {
    return [
      {
        // this will match `/english(default)/something` being requested
        source: '/english\\(default\\)/:slug',
        headers: [
          {
            key: 'x-header',
            value: 'value',
          },
        ],
      },
    ]
  },
}

要仅在请求头、Cookie 或 查询参数的值也与 has 字段匹配或不与 missing 字段匹配时才应用请求头,可以使用这些字段。要应用请求头,source 和所有 has 项都必须匹配,并且所有 missing 项都必须不匹配。

hasmissing 项可以具有以下字段

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

支持 basePath 的请求头

当利用 basePath 支持 与请求头时,每个 source 会自动加上 basePath 前缀,除非你在请求头中添加了 basePath: false

next.config.js
module.exports = {
  basePath: '/docs',
 
  async headers() {
    return [
      {
        source: '/with-basePath', // becomes /docs/with-basePath
        headers: [
          {
            key: 'x-hello',
            value: 'world',
          },
        ],
      },
      {
        source: '/without-basePath', // is not modified since basePath: false is set
        headers: [
          {
            key: 'x-hello',
            value: 'world',
          },
        ],
        basePath: false,
      },
    ]
  },
}

支持 i18n 的请求头

当利用 i18n 支持 与请求头时,每个 source 会自动加上前缀以处理配置的 locales,除非你添加了 locale: false 到请求头中。如果使用了 locale: false,则必须为 source 添加区域设置前缀才能正确匹配。

next.config.js
module.exports = {
  i18n: {
    locales: ['en', 'fr', 'de'],
    defaultLocale: 'en',
  },
 
  async headers() {
    return [
      {
        source: '/with-locale', // automatically handles all locales
        headers: [
          {
            key: 'x-hello',
            value: 'world',
          },
        ],
      },
      {
        // does not handle locales automatically since locale: false is set
        source: '/nl/with-locale-manual',
        locale: false,
        headers: [
          {
            key: 'x-hello',
            value: 'world',
          },
        ],
      },
      {
        // this matches '/' since `en` is the defaultLocale
        source: '/en',
        locale: false,
        headers: [
          {
            key: 'x-hello',
            value: 'world',
          },
        ],
      },
      {
        // this gets converted to /(en|fr|de)/(.*) so will not match the top-level
        // `/` or `/fr` routes like /:path* would
        source: '/(.*)',
        headers: [
          {
            key: 'x-hello',
            value: 'world',
          },
        ],
      },
    ]
  },
}

Cache-Control

对于真正不变的资产,Next.js 会设置 Cache-Control 请求头为 public, max-age=31536000, immutable。它无法被覆盖。这些不变的文件在文件名中包含 SHA 哈希,因此可以无限期安全地缓存。例如,静态图片导入。你不能在 next.config.js 中为这些资产设置 Cache-Control 请求头。

但是,你可以为其他响应或数据设置 Cache-Control 请求头。

如果你需要重新验证已静态生成的页面的缓存,可以通过在页面的 getStaticProps 函数中设置 revalidate 属性来实现。

要缓存来自 API 路由 的响应,可以使用 res.setHeader

pages/api/hello.ts
import type { NextApiRequest, NextApiResponse } from 'next'
 
type ResponseData = {
  message: string
}
 
export default function handler(
  req: NextApiRequest,
  res: NextApiResponse<ResponseData>
) {
  res.setHeader('Cache-Control', 's-maxage=86400')
  res.status(200).json({ message: 'Hello from Next.js!' })
}

你也可以在 getServerSideProps 中使用缓存请求头 (Cache-Control) 来缓存动态响应。例如,使用 stale-while-revalidate

pages/index.tsx
import { GetStaticProps, GetStaticPaths, GetServerSideProps } from 'next'
 
// This value is considered fresh for ten seconds (s-maxage=10).
// If a request is repeated within the next 10 seconds, the previously
// cached value will still be fresh. If the request is repeated before 59 seconds,
// the cached value will be stale but still render (stale-while-revalidate=59).
//
// In the background, a revalidation request will be made to populate the cache
// with a fresh value. If you refresh the page, you will see the new value.
export const getServerSideProps = (async (context) => {
  context.res.setHeader(
    'Cache-Control',
    'public, s-maxage=10, stale-while-revalidate=59'
  )
 
  return {
    props: {},
  }
}) satisfies GetServerSideProps

选项

CORS

跨域资源共享 (CORS) 是一项安全功能,允许你控制哪些站点可以访问你的资源。你可以设置 Access-Control-Allow-Origin 请求头以允许特定来源访问你的API 端点.

async headers() {
    return [
      {
        source: "/api/:path*",
        headers: [
          {
            key: "Access-Control-Allow-Origin",
            value: "*", // Set your origin
          },
          {
            key: "Access-Control-Allow-Methods",
            value: "GET, POST, PUT, DELETE, OPTIONS",
          },
          {
            key: "Access-Control-Allow-Headers",
            value: "Content-Type, Authorization",
          },
        ],
      },
    ];
  },

X-DNS-Prefetch-Control

此请求头 控制 DNS 预取,允许浏览器主动对外部链接、图片、CSS、JavaScript 等执行域名解析。此预取在后台执行,因此 DNS 很可能在需要引用项时得到解析。这减少了用户点击链接时的延迟。

{
  key: 'X-DNS-Prefetch-Control',
  value: 'on'
}

Strict-Transport-Security

此请求头 通知浏览器它应该只使用 HTTPS 访问,而不是使用 HTTP。使用下面的配置,所有当前和将来的子域都将使用 HTTPS 2 年的 max-age。这阻止了只能通过 HTTP 提供服务的页面或子域的访问。

如果你部署到 Vercel,则此请求头不是必需的,因为它会自动添加到所有部署中,除非你在 next.config.js 中声明了 headers

{
  key: 'Strict-Transport-Security',
  value: 'max-age=63072000; includeSubDomains; preload'
}

X-Frame-Options

此请求头 指示站点是否允许在 iframe 中显示。这可以防止点击劫持攻击。

此请求头已被 CSP 的 frame-ancestors 选项取代,后者在现代浏览器中具有更好的支持(有关配置详细信息,请参阅 内容安全策略)。

{
  key: 'X-Frame-Options',
  value: 'SAMEORIGIN'
}

Permissions-Policy

此请求头 允许你控制浏览器中可以使用哪些功能和 API。它以前被称为 Feature-Policy

{
  key: 'Permissions-Policy',
  value: 'camera=(), microphone=(), geolocation=(), browsing-topics=()'
}

X-Content-Type-Options

此头部 阻止浏览器在未显式设置 Content-Type 头部时尝试猜测内容类型。这可以防止允许用户上传和共享文件的网站遭受 XSS 攻击。

例如,用户尝试下载图像,但将其视为不同的 Content-Type,例如可执行文件,这可能是恶意的。此头部也适用于下载浏览器扩展。此头部的唯一有效值为 nosniff

{
  key: 'X-Content-Type-Options',
  value: 'nosniff'
}

Referrer-Policy

此头部 控制浏览器在从当前网站(来源)导航到另一个网站时包含多少信息。

{
  key: 'Referrer-Policy',
  value: 'origin-when-cross-origin'
}

Content-Security-Policy

了解有关向应用程序添加 内容安全策略 的更多信息。

版本历史

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