使用 NextJs 的多租户站点(多站点)并捕获所有路由

Multitenant site (multisite) with NextJs and catch all routes

提问人:Tactic Sugar 提问时间:11/9/2023 更新时间:11/9/2023 访问量:11

问:

我有许多网站(域),它们使用不同的域和网址提供相同的产品。所有域都有不同的页眉、页脚、产品卡等设计......

site1.com
site1-[city].com - 100 different cities and domains
site2.com
site2-[city].com - 100 different cities and domains
site3-site3.com
site3-site3-[city].com - 100 different cities and domains

所有这些域对相同的产品都有不同的蛞蝓。例如,同一把椅子的末尾可以有不同的网址:

site1.com/[category]/[subcategory]/chair
site1-[city].com.com/chair
site1-[city].com/[category]/chair

我可以用 NextJs 制作 1 个前端应用程序,这样,当用户来到一个页面时

site1.com/[category]/[subcategory]/chair 

他被一些服务器转移到 NextJs 应用程序,该应用程序为他构建特定页面。当 anoter 用户去

site1-[city].com.com/chair 

然后,他被发送到同一个NextJS应用程序,这给了他另一个页面。我可以使用 1 个动态页面来捕获所有路由吗?

HTML ReactJS Next.js URL重写 SEO

评论


答: 暂无答案