NGINX proxy_pass 无需更改 URL

NGINX proxy_pass 无需更改 URL

我的目标

我的目标是重定向到其他网页,但不更改地址栏中的 URL。例如,我想从 重定向https://my.site.com/pathhttps://external.com/other,但只应更改页面内容,而不更改 URL。

当前配置

这是我尝试过的。我觉得这proxy_redirect可能是个好主意,所以我根据以下配置NGINX 文档。但是,虽然确实加载了 的内容https://external.com/other,但地址栏中的 URL 更改为https://my.site.com/other。域名保持不变,但路径发生了变化。

location = /path {
    proxy_pass https://external.com/other;
    proxy_redirect default;
}

相关内容