2010-06-27 102 views
1

請幫助我,我拉着我的頭髮。我無法讓虛擬主機與WAMP一起工作。我已經註釋掉了這行:WAMP虛擬主機無法正常工作

 
# Virtual hosts 
Include conf/extra/httpd-vhosts.conf 

這是我的httpd-vhosts.conf文件:

# 
# Virtual Hosts 
# 
# If you want to maintain multiple domains/hostnames on your 
# machine you can setup VirtualHost containers for them. Most configurations 
# use only name-based virtual hosts so the server doesn't need to worry about 
# IP addresses. This is indicated by the asterisks in the directives below. 
# 
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs/2.2/vhosts/> 
# for further details before you try to setup virtual hosts. 
# 
# You may use the command line option '-S' to verify your virtual host 
# configuration. 

# 
# Use name-based virtual hosting. 
# 
NameVirtualHost *:80 

# 
# VirtualHost example: 
# Almost any Apache directive may go into a VirtualHost container. 
# The first VirtualHost section is used for all requests that do not 
# match a ServerName or ServerAlias in any <VirtualHost> block. 
# 
<VirtualHost 127.0.0.1> 
    DocumentRoot "C:\wamp\www" 
    ServerName localhost 
</VirtualHost> 
<VirtualHost 127.0.0.1> 
    DocumentRoot "C:\wamp\www\project\public" 
    ServerName project 
    ErrorLog "logs/project.localhost.error.log" 
    CustomLog "logs/project.localhost.access.log" common 
</VirtualHost> 

我在做什麼錯?我的錯誤在哪裏?爲什麼它不顯示我的虛擬主機?

+1

第一次重新格式化您的帖子,第二次描述到底是什麼對您不起作用,最後但並非最不重要,這是服務器故障的問題。 – joschi 2010-06-27 06:16:54

回答

0

我找到了答案。我忘了在Windows主機文件中添加主機名。

+0

請添加你遵循的步驟。 – Bharanikumar 2012-12-25 14:41:08

+0

這是1行輸入爲 ipaddress hostname 127.0.0.1 www.example.com 這只是一個例子。你需要替換你的IP地址和主機名。 – 2013-01-09 06:12:42