Nextjs`has` 重定向在 vercel

时间:2021-07-03 14:15:58

标签: next.js vercel

我正在将旧网站移至新网站,并尝试设置 301 重定向。我的旧网站网址看起来像 /model?id=<uuid>,而新网站网址看起来像 /model/<slug>。所以我设置了如下重定向。

for(var item of events) {
        redirects.push({
            source: `/event`,
            has: [{
              type: 'query',
              key: 'id',
              value: item.id,
            }],
            destination: `/events/${item.slug}`,
            permanent: true,
        })
    }

当我在本地运行时它运行良好。但在 vercel 中出现以下错误。

502: Bad Gateway
Code: TOO_MANY_FORKS

列出了大约 500 个重定向。

0 个答案:

没有答案