如何在单个域上部署自适应 Next Js 网站?
我用 Next js 构建了一个自适应网站;它有两个版本,一个用于移动设备,另一个用于桌面设备。两个版本都是部署在两个不同环境中的独立 Nextjs 项目。我想将两者部署在同一域上并根据用户代理加载各自的版本。
示例: www.test.com 如果找到移动用户代理,将加载移动网站,否则桌面网站
我可以加载网站的相应版本如果我有一个子域,例如移动版本的“m.test.com”和桌面版本的“test.com”(为此,我在 next.config 中添加了重定向逻辑。基于 User-Agent 的 Node.js)。
我不知道在哪里编写逻辑来渲染基于同一域上的用户代理的特定构建。
I have built an adaptive website in Next js; Which has two versions one for mobile devices and another for Desktop. Both versions are separate Nextjs projects deployed on two different env. I want to deploy both on the same domain and load the respective versions based on user-agent.
example: www.test.com will load mobile site if found mobile User-Agent else Desktop site
I'm able to load the respective version of the site If I have a sub-domain like "m.test.com" for the mobile version and "test.com" for the desktop version ( for this I have added redirect logic in next.config.js based on User-Agent).
I don't know where to write the logic to render a specific build based on User-Agent on the same domain.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有两个不同的节点应用程序正在运行,并且想要基于用户代理进行重定向,您可以使用 nginx 的 $http_user_agent 之类的东西来重写到您的应用程序可以侦听的不同端口:
If you have two different Node Apps running and want to redirect based on User Agent, you can use something like nginx's
$http_user_agent
to rewrite to different ports where your Apps can listen on: