代理传递 404 Not Found nginx/1.18.0 (Ubuntu) 但斜线在正确的位置

代理传递 404 Not Found nginx/1.18.0 (Ubuntu) 但斜线在正确的位置

test.conf在一个名为的文件中/etc/nginx/conf.d,我有:

server {
    listen 80;
    server_name test;
    root /var/www;
    location /some/path/ {
        proxy_pass http://www.example.com/link/;
    }

}

sudo nginx -s reload我尝试去http://1xx.xx.xx.xx/我得到了 usaul nginx 欢迎页面,但在

http://1xx.xx.xx.xx/some/path/ 

我有一个:

404 Not Found nginx/1.18.0 (Ubuntu)

我已经尝试了所有方法,但我仍然不明白问题出在哪里。

相关内容