搜索

首页  >  问答  >  正文

javascript - WAMP下面配置多台虚拟主机,其他计算机如何控制访问哪个网站?

httpd-vhosts.conf下配置vhost两个

<VirtualHost *:80>
    DocumentRoot "G:\PhpDemo"
    ServerName "localhost"
    <Directory "G:\PhpDemo">
        Options Indexes FollowSymLinks
        AllowOverride all
        Require all granted 
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "G:\MVC"
    ServerName "www.mvc.com"
    <Directory "G:\MVC">
        Options Indexes FollowSymLinks
        AllowOverride all
        Require all granted 
    </Directory>
</VirtualHost>

在windows的host文件中也添加了对应的配置

127.0.0.1       localhost
127.0.0.1       www.mvc.com

但是其他计算机通过ip访问本机还是localhost,如何让其他机器访问到www.mvc.com?

PHP中文网PHP中文网2766 天前607

全部回复(1)我来回复

  • 天蓬老师

    天蓬老师2017-06-10 09:49:24

    其他机器上需要绑定你机器ip的host。域名就是www.mvc.com

    回复
    0
  • 取消回复