我有服务器A和B.服务器A托管主站点www.example.com,服务器B使用子域test.example.com托管另一个站点。在服务器A上我设置了反向代理,以便可以通过www.example.com/test访问test.example.com上运行的Wordpress站点
现在我想让子域test.example.com成为"隐形"对于用户,以便test.example.com的请求将重定向到www.example.com/test。 显然,这让我陷入了无限循环。我尝试了不同的东西来打破循环无济于事。 有没有办法做到这一点?
答案 0 :(得分:0)
<VirtualHost *:80>
ServerName test.example.com
RedirectMatch permanent ^/(.*) www.example.com/test
</VirtualHost>
添加上面的apache conf并重新启动apache。