0

我有一个来自 godaddy 的专用 linux 主机。我还购买了两个网站域名。假设它是 abc.com 和 xyz.com。

xyz.com 已设置到服务器。

我想获取 abc.com 的流量到 xyz.com 的子文件夹,但链接必须保留为 abc.com。即 abc.com/index.html 必须在 xyz.com/abc/index.html 路径中。但是 xyz.com/abc/index.html 必须返回 404 而 abc.com/index.html 必须返回正确的页面。

4

1 回答 1

0

如果您使用apachewith mod_proxyenabled,配置 aReverseProxy将完成这项工作。abc.com这是在域的 apache 配置中添加的指令示例:

 ProxyPass / http://xyz.com/subfoder
 ProxyPassReverse / http://xyz.com/subfolder

这些会将所有请求转发到http://xyz.com/subfoder `

还可以查看apache 的文档

于 2013-03-11T16:06:53.433 回答