网站子域和重定向

时间:2014-02-26 09:33:03

标签: apache http subdomain

我有一个现有网站的客户,我正在为一次性活动建立会议网站。

我想尽可能保持域名与主要网站类似,但它们将位于不同的服务器上。

有人可以建议我如何通过将其配置为主站点的子站点/子域来实现将流量引导到我的会议网站吗? 即conferece.main.commain.com/conference

之类的东西

1 个答案:

答案 0 :(得分:0)

您可以通过配置代理

来实现此目的
<VirtualHost *:*>
    <IfModule mod_proxy.c>
        ProxyPreserveHost On
        ProxyPass /conference http://conferece.main.com/
        ProxyPassReverse /conference http://conferece.main.com/
    </IfModule>
    ServerName main.com
</VirtualHost>