Nginx反向代理重定向

时间:2018-10-03 13:34:44

标签: redirect nginx proxy

我正在尝试将代理反向到另一个代理。麻烦在于它将我重定向到url。我希望原始网址不包含子文件夹。

server {
  server_name admin.example.com;

  location / {
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header Host $host;
    proxy_pass http://www.example.com/thisfolder/anotherfolder;
    proxy_redirect off;
  } 
}

我希望admin.exable.com留在地址栏中,并显示www.example.com/thisfolder/anotherfolder中的内容

非常感谢您的帮助。

0 个答案:

没有答案