nginx使用路径重定向至服务

发布于 2022-09-07 12:22:08 字数 688 浏览 12 评论 0

现在有域名www.services.com, 对应的服务器上部署了三个服务ServiceA, ServiceB, ServiceC,
每个服务的访问方法为访问对应路径的index.html文件即可, 如ServiceA服务的前端路径为Path/to/A, ServiceB服务的前端路径为pATh/tO/B

然后我想要实现通过http://www.services.com/ServiceA 来访问Path/to/A/index.html, 于是我尝试了这样子的配置:

http {
  listen 80;
  server_name www.services.com;

  # nginx默认配置
  location /  {
    root html;
    index index.html index.htm
  }

  # ServiceA配置
  locaton ^~ /ServiceA {
    root Path/to/A
    index.index.html index.htm
  }
}

而最后实际上会请求访问到/Path/to/A/ServiceA/或是/usr/share/nginx/html/ServiceA/, 于是返回404报错.

请问为什么会出现这样的路由规则? 如何实现期望效果?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

早茶月光 2022-09-14 12:22:08

可以使用 try files 解决

# ServiceA配置 
locaton ^~ /ServiceA { 
    root Path/to/A ;
    #index.index.html index.htm 
    try_files $url  index.html;
}
沫尐诺 2022-09-14 12:22:08
  index index.html index.htm;
  locaton /ServiceA/ {
    alias Path/to/A/;
  }
  locaton /ServiceB/ {
    alias Path/to/B/;
  }
  locaton /ServiceC/ {
    alias Path/to/C/;
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文