我有一个现有站点,其中包含营销页面,这些营销页面已被拉到新的WP安装中。
在省略尾随/
之前,代理是可以的。发生这种情况时,WP会以绝对网址响应WP主机。
https://example.com/bar/ -> 200, domain stays the same
https://example.com/bar -> 301, redirects to the WP install domain
我们已经尝试过将WP域更改为与代理相同的方法,这破坏了一切。我们尝试了一个相对的url插件,但它破坏了所有资产。
我已经使用了越来越复杂的正则表达式模式,我可能会将此问题提交到提交中,但是我担心缺少一些边缘情况。
其他人实际上是如何做到的?
使用简单的nginx conf更新
location / {
proxy_pass http://mysite.examplewp.com;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
curl -IL https://example.com/contact
HTTP/1.1 301 Moved Permanently
X-Redirect-By: WordPress
Location: https://mysite.examplewp.com/contact/
curl -IL https://example.com/contact/
HTTP/1.1 200 OK