如何正确掩盖/重定向apache中的URL httpd?

时间:2012-09-28 02:40:44

标签: url apache

我在主机名上运行了一个apache httpd服务器:

firsthostname

我在另一个主机名上运行另一个apache httpd服务器:

secondhostname

我希望每当有人去的时候这样做:

firsthostname,重定向到secondhostname。如果用户转到firsthostname / something,用户实际看到的就是用户转到“secondhostname / something”,尽管“secondhostname”被屏蔽了

我在“firsthostname”上安装的httpd上配置了什么以及如何配置?我在Windows机器上运行。

2 个答案:

答案 0 :(得分:1)

您可以使用apache rewrite或apache redirect

执行此操作
RewriteEngine  on
RewriteRule    ^/foo  /bar

或者

Redirect /foo.html /bar.html

查看此documentation

答案 1 :(得分:0)

您需要一个DNS服务器。然后,您只需设置CNAME条记录即可将firsthostname映射到secondhostname