虚拟主机未配置

时间:2013-07-09 08:59:01

标签: apache virtual-hosts

我已将httpd-vhosts.conf配置为

<VirtualHost *:80>
    ServerAdmin webmaster@repos
    DocumentRoot "C:\Users\Naveed-Laptop\repos\ustainable"
    ServerName   ustainable
    ErrorLog    "logs/ustainable-error.log"
    CustomLog   "logs/ustainable-acess.log" common
</VirtualHost> 

配置我的主机文件     127.0.0.1 ustainable

但是当我去google chrome搜索并搜索时         [HTTP:// ustainable]

它说

    Oops! Google Chrome could not connect to ustainable
    Suggestions:
    Search on Google:

1 个答案:

答案 0 :(得分:0)

由于热点sheild和ErrorLog,CustomLog,它正在创建问题;我正在使用xampp 1.8

<VirtualHost 127.0.0.1:80>
DocumentRoot "C:\xampp\htdocs"
ServerName xampp.local
ServerAlias www.xampp.local
</VirtualHost>
<VirtualHost 127.0.0.1:80>
DocumentRoot "C:\xampp\htdocs\domain\html"
ServerName domain.local.com
ServerAlias www.domain.local.com

在httpd-vhosts.conf文件末尾添加它后,重新启动xampp,并将以下行添加到C:\ Windows \ System32 \ Drivers \ etc \ hosts

中可用的主机文件中。
127.0.0.1    domain.local.com
127.0.0.1      xampp.local

它将适用于xampp 1.8,因为剩余的xampp版本希望如此