generateSitemaps
您可以使用 `generateSitemaps` 函数为您的应用程序生成多个站点地图。
返回值
`generateSitemaps` 返回一个对象数组,每个对象都具有一个 `id` 属性。
网址
在生产环境中,您生成的站点地图将位于 `/.../sitemap/[id].xml`。例如,`/product/sitemap/1.xml`。
在开发环境中,您可以在 `/.../sitemap.xml/[id]` 查看生成的站点地图。例如,`/product/sitemap.xml/1`。此差异是暂时的,并将遵循生产格式。
示例
例如,要使用 `generateSitemaps` 拆分站点地图,请返回一个包含站点地图 `id` 的对象数组。然后,使用 `id` 生成唯一的站点地图。
app/product/sitemap.ts
import { BASE_URL } from '@/app/lib/constants'
export async function generateSitemaps() {
// Fetch the total number of products and calculate the number of sitemaps needed
return [{ id: 0 }, { id: 1 }, { id: 2 }, { id: 3 }]
}
export default async function sitemap({
id,
}: {
id: number
}): Promise<MetadataRoute.Sitemap> {
// Google's limit is 50,000 URLs per sitemap
const start = id * 50000
const end = start + 50000
const products = await getProducts(
`SELECT id, date FROM products WHERE id BETWEEN ${start} AND ${end}`
)
return products.map((product) => ({
url: `${BASE_URL}/product/${product.id}`,
lastModified: product.date,
}))
}
这有帮助吗?