如何刪除 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 請求沒有/for root,從而給出有關零長度 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;
    }
}

相關內容