问答详情
源自:2-4 WAMPServer多站点配置

多站点的原理是什么?

https://img2.mukewang.com/5c56741600016f5f02200096.jpg

hosts文件里明明都是将test1.com,test2.com和localhost绑定到同一ip地址(127.0.0.1),为什么访问test1.com或test2.com会自动访问到test1或test2文件夹下下的index.php,而不是访问到根目录下的index.php

提问者:总有民女想推朕 2019-02-03 12:58

个回答

  • 慕工程3352311
    2019-03-21 23:32:02

    跟httpd-vhosts.conf有关

    --------------------------------------------------

    <VirtualHost *:80>

      ServerName test01.com

      DocumentRoot "D:\WAMP-demo\test01"

    --------------------------------------------------

    是在这里映射的,原理不知道。。