NGINX Proxy_Pass删除url substring

前端之家收集整理的这篇文章主要介绍了NGINX Proxy_Pass删除url substring前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个Nginx充当反向代理.我需要从URL中删除子串string_1,其余的URL是可变的.

例:

Origin: http://host:port/string_1/string_X/command?xxxxx

Destination: http://internal_host:port/string_X/command?xxxxx

Nginx.conf:

location /string_1/   { 

    proxy_pass  http://internal_host:port/$request_uri$query_string;

谢谢,

@pcamacho

最佳答案
我找到了重写proxy_pass URL的方法

  location  /string_1/   {  

    if ($request_uri ~* "/string_1/(.*)") { 
            proxy_pass  http://internal_host:port/$1;
    }   

  }

问候,

@pcamacho

原文链接:https://www.f2er.com/nginx/435231.html

猜你在找的Nginx相关文章