我有两个不同的服务器 - 服务器A和服务器B.
服务器A的应用程序 abc.example.com
服务器B有一个应用程序 www.example.com
我需要将 abc.example.com 重定向到 www.example.com/abc
我已将 abc.example.com 的CNAME(规范名称)指定为 www.example.com ,因此,每当我点击 abc.example时。 com 它会打开 www.example.com 的内容,虽然它尚未重定向。
我需要在“服务器B”的Apache服务器中定义什么重定向规则,以便来自“服务器A”的来自 abc.example.com 的请求被重定向到 www.example。 com / abc 包括路径'/ abc'
感谢。
答案 0 :(得分:0)
这应该做 -
<VirtualHost *:80>
ServerName abc.example.com
RewriteRule ^/(.*)$ https://www.example.com/abc
</VirtualHost>