在本地,我们通常用 localhost 或 127.0.0.1 来访问apache根目录,如何通过类似 www.test.net 的形似来访问呢,

  有两个地方需要修改:

 

  1. Apache 配置文件 conf\httpd.conf

  将 #NameVirtualHost *:80 前面的注释标记 # 去掉,开启多个虚拟主机功能。

  然后在其最后加上

<VirtualHost *:80>
    DocumentRoot "D:\AppServ\www"
    ServerName localhost
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "D:\AppServ\www\www.test.net"
    ServerName www.test.net
</VirtualHost>

  加上localhost那一段是为了防止http://localhost/变成访问"D:\AppServ\www\www.test.net",
由于多个虚拟主机默认是访问第一个,所以把localhost这一段放在第一个,就可以保持http://localhost/为原来的样子。

  

  2.  C:\WINDOWS\system32\drivers\etc\hosts

  在其最后加上

127.0.0.1 www.test.net

  这样一来,在浏览器中输入http://www.test.net/,就可以访问到指定的页面了。

posted on 2012-09-06 12:57  cria  阅读(123)  评论(0编辑  收藏  举报