javascript - Wie können andere Computer steuern, auf welche Website sie zugreifen, wenn mehrere virtuelle Hosts unter WAMP konfiguriert sind?
PHP中文网
PHP中文网 2017-06-10 09:47:24
0
1
619

Konfigurieren Sie zwei Vhosts unter httpd-vhosts.conf

<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>

Die entsprechende Konfiguration wurde auch zur Windows-Hostdatei hinzugefügt

127.0.0.1       localhost
127.0.0.1       www.mvc.com

Aber unabhängig davon, ob andere Computer über IP oder Localhost auf diese Maschine zugreifen, wie können andere Maschinen auf www.mvc.com zugreifen?

PHP中文网
PHP中文网

认证高级PHP讲师

Antworte allen(1)
Peter_Zhu

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

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage