我创建了2个虚拟主机来访问我的Web应用程序,但是只能运行一个。我使用xampp和Windows 7。 我已经阅读了一些关于stackoverflow的教程和主题,但是对我没有任何帮助。 这是我的httpd-vhosts.conf
#----------------- projek tlogorejo--------------#
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "C:\projek\tlg-simpus"
ServerName pps-tlogorejo.dev.com
ServerAlias pps-tlogorejo.dev.com
ErrorLog "logs/pps-tlogorejo.dev.com-error.log"
CustomLog "logs/pps-tlogorejo.dev.com-access.log" common
<Directory "C:\projek\tlg-simpus">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
Require all granted
</Directory>
</VirtualHost>
#-------------------------------integrator--------
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "C:\projek\main-apps\integrator"
ServerName www.integrator.dev.com
ServerAlias www.integrator.dev.com
ErrorLog logs/integrator.dev.com.log
CustomLog logs/integrator.dev.com.log combined
<Directory "C:\projek\main-apps\integrator">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
这是我的host
文件
#integrator
127.0.0.1 www.integrator.dev.com
#projek tlogorejo
127.0.0.1 pps-tlogorejo.dev.com
当我运行pps-tlogorejo.dev.com
时,它可以正常运行。但是,如果我运行www.integrator.dev.com
,它将无法运行。