二月飞

学学更健康

apache虚拟主机配置

 

1.   启用  httpd-vhosts.conf

在 httpd.conf 文件中

# Virtual hosts ,虚拟主机

Include conf/extra/httpd-vhosts.conf

2.      在httpd-vhosts.conf文件中做配置

 1 #配置我们自己的虚拟主机
 2 <VirtualHost 127.0.0.1:80>
 4 
 5  DocumentRoot "d:/myblog"
 6 
 7     #这里配置欢迎首页面
 8 
 9     DirectoryIndex index.html index.htm index.php
10 
11     <Directory />
12 
13     Options FollowSymLinks
14 
15     #不许可别人修改我们的页面
16 
17     AllowOverride None
18 
19     #设置访问权限
20 
21     Order allow,deny
22 
23     Allow from all
24 
25     </Directory>
26 
27 </VirtualHost>

3.      修改hosts 文件 ->新的知识点. (重新审视我们的访问一个网页的真正流程)

127.0.0.1            www.shunping.com

配置顺序:httpd.conf启用虚拟主机→conf/extra/httpd-vhosts.conf文件中配置虚拟主机→c:/windows/system32/drivers/etc/hosts中配置

posted on 2013-08-11 21:58  二月飞  阅读(130)  评论(0编辑  收藏  举报

导航