谁能帮我在我的 WAMP 服务器上设置这个虚拟主机?
我已经在线阅读了几篇文章和博客,但无法进行设置。
我按照这里建议的程序:http ://www.ruifeio.com/2011/01/30/setting-up-virtual-hosts-on-wampserver/
当我执行上述操作时,我的服务器挂断了。目前我将以下内容添加到我的 C:/windows/system32/drivers/etc/hosts 文件中
127.0.0.1 tsg.local
我用 Listen 90 更改了我的 httpd.conf Apache 配置文件,因为我使用的是端口 90
另外,按照上述教程中的建议删除了 # 标签。
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
我还将以下内容添加到我的 httpd-vhosts.conf
<VirtualHost *:90>
ServerAdmin webmaster@localhost
DocumentRoot “C:\wamp\www\tsg\”
ServerName tsg.local
ErrorLog “C:\wamp\www\logs\tsg.log”
CustomLog “C:/wamp/www/logs/common.log” common
</VirtualHost>
并更改: NameVirtualHost *:80 为NameVirtualHost *:90
感谢您提前提供帮助!