我在我的 Windows 7 上安装了 IIS,它使用默认端口 80,可以在http://localhost
. 现在我也安装了 XAMPP 并设置了 8081 端口,所以我可以在http://localhost:8081
.
现在,我只想为 xampp 添加虚拟主机,以便我可以通过http://test/
而不是http://localhost:8081
. 我不想对 IIS 地址进行任何更改,并希望保持其地址不变。为此,我在我的 xampp/apache/conf/extra/httpd-conf 文件中添加了虚拟主机,即
NameVirtualHost *:8081
<VirtualHost *:8081>
ServerAdmin admin@localhost.com
DocumentRoot "C:/xampp/htdocs"
ServerName test
ServerAlias test
</VirtualHost>
我已经重新启动了 apache 但仍然无法访问该地址http://test
。我错过了什么或做错了什么?