Apache端口设置多域名和转发请求(虚拟域名)

在Apache里设置80端口有多个域名:(我的apache是在C盘)

找到C:\xampp\apache\conf\extra\httpd-vhosts.conf,打开:

在文件最后添加配置:


    DocumentRoot "e:"
    ProxyPass /boss http://192.168.10.8/
    ServerName aa.baidu.com

    DocumentRoot "e:"
    ProxyPass /boss http://192.168.10.8/ 
    ServerName bb.baidu.com

ProxyPass是用转发请求。

ServerName设置域名

按照上面的写法就能支撑多个域名在80端口下


还需要设置:

C:\Windows\System32\drivers\etc\hosts

最后添加配置:

127.0.0.1   aa.baidu.com
127.0.0.1   bb.baidu.com

重新打开浏览器和apache服务器就能通过域名去访问本地服务了




你可能感兴趣的:(web前端)