如何删除 nginx 的 passproxy 中的尾部斜杠?

如何删除 nginx 的 passproxy 中的尾部斜杠?

我想使用 nginx 代理传递按如下方式访问它。

proxy.com/api/-> proxy.com/api(连接的网站是 example.com)

proxy.com/api -> proxy.com/api(连接的网站是 example.com)

第一个过程很顺利。

第二个引发 404 错误或重定向到尾随斜杠。

server {
    listen       80;
    server_name  proxy.com;


    location / {
        root   html;
        index  index.html index.htm;
    }

    location /api {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header HOST $host;
        proxy_set_header X-NginX-Proxy true;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        rewrite ^/api(.*)$ $1?$args break;
        # rewrite ^/api(.*)/$ /$1 break;

        proxy_pass http://exmaple.com;
        proxy_redirect off;

        
    }
}

这样做会导致以下错误:

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

Wed Dec 07 06:55:15 UTC 2022
There was an unexpected error (type=Not Found, status=404).

错误日志

the rewritten URI has a zero length, client: 127.0.0.1, server: proxy.com, request: "GET /api HTTP/1.1", host: "proxy.com"

我尝试了以下操作,但出现了同样的错误。

nginx 使用尾部斜杠进行重写

答案1

也就是说,您proxy_pass http://exmaple.com;的代理的目标似乎位于站点的根目录。这将导致 HTTP 请求不包含/根目录,从而导致零长度 URI 的错误。

我会尝试将重写移到location代理之外。

server {
    listen      80;
    server_name proxy.example.com;

    # . . .

    location ~ ^/api$ {
        return 301 http://proxy.example.com/
    }

    location /api/ {
        proxy_pass http://target.example.com;
    }
}

相关内容