我在主机名上运行了一个apache httpd服务器:
firsthostname
我在另一个主机名上运行另一个apache httpd服务器:
secondhostname
我希望每当有人去的时候这样做:
firsthostname,重定向到secondhostname。如果用户转到firsthostname / something,用户实际看到的就是用户转到“secondhostname / something”,尽管“secondhostname”被屏蔽了
我在“firsthostname”上安装的httpd上配置了什么以及如何配置?我在Windows机器上运行。
答案 0 :(得分:1)
您可以使用apache rewrite或apache redirect
执行此操作RewriteEngine on
RewriteRule ^/foo /bar
或者
Redirect /foo.html /bar.html
答案 1 :(得分:0)
您需要一个DNS
服务器。然后,您只需设置CNAME
条记录即可将firsthostname
映射到secondhostname
。