Heim > Fragen und Antworten > Hauptteil
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?