0

谁能帮我在我的 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

感谢您提前提供帮助!

4

1 回答 1

0

如果您的服务器在删除虚拟主机块后可以正常启动,请尝试修复您的报价。看起来您有一些“魔术引号”而不是直引号 - 可能来自教程中的复制和粘贴。试试这个:

<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>

如果 80 不是一个选项,您可能还想选择一个更标准的端口来监听,8080 或 8888 而不是 90。

于 2013-02-11T19:01:42.320 回答