我有一个 Tomcat 服务器,它在 $myip:8080 上运行良好。当我在 $myip:8080/test() 上提交表单时,它会跳转到 $myip:8080/test/get_result 并给出正确的结果。
为了在访问 $myip/services/test 时看到 $myip:8080/test 的结果,我重写了 nginx 配置中的 url 并使其指向 $myip:8080。配置如下所示:
location /services/ {
rewrite /services/(.*) /$1 break;
proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $host;
}
可以访问 $myip/services/test,但是当我提交表单时,它会跳转到 $myip/services/get_result。我应该怎么做才能让它跳转到 $myip/services/test/get_result 呢?
谢谢