在 Win64 Apache 上使用 WampServer 2.4.41 我在我的httpd-vhosts.conf
胸围中使用此设置这是将maper
作为新VirtualHost
的添加到 WampServer 而不是将其添加Site
到 localhost:8080VirtualHost
<VirtualHost *:8080>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
#webematics
<VirtualHost *:8080>
ServerName maper
ServerAlias maper
DocumentRoot "${INSTALL_DIR}/www/maper"
<Directory "${INSTALL_DIR}/www/maper/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
我也hosts
有
#
127.0.0.1 localhost
::1 localhost
127.0.0.1 maper
如您所见maper
,我的项目中列出了该列表,但无法单击,并且我收到了此消息
要将它们用作 http 链接,您必须将它们声明为 VirtualHost
我错过了什么,我该如何解决这个问题,将所有东西都放在一个虚拟主机下localhost
?