首页 > Web开发 > 详细

Apache之——配置虚拟主机

时间:2015-08-31 23:47:52      阅读:329      评论:0      收藏:0      [点我收藏+]
转载请注明出处:http://blog.csdn.net/l1028386804/article/details/48140649

一、修改httpd.conf文件

首先我们在Apache的安装目录的conf下,找到httpd.conf文件,如下图:

技术分享

打开文件,在文件中找到如下代码:

DocumentRoot "D:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs"
这行代码代表的是apache的默认访问路径,首先,我们把这行代码注释掉,如下图:

技术分享

然后在httpd.conf文件中找到如下代码

# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
打开#Include conf/extra/httpd-vhosts.conf这行代码的注释

如下图:

技术分享

二、修改httpd-vhosts.conf文件

在conf目录下的extra目录中找到httpd-vhosts.conf文件,也就是httpd.conf文件中引用的文件。

然后在httpd-vhosts.conf文件中添加如下代码:

#配置我们自己的虚拟主机
<VirtualHost 127.0.0.1:8080>
    #配置访问根目录
    DocumentRoot "d:/Apache"
    #这里配置欢迎首页面
    DirectoryIndex index.html index.htm index.php
    <Directory />
    Options FollowSymLinks
    #不允许别人修改我们的页面
    AllowOverride None
    #设置访问权限
    Order allow,deny
    Allow from All
    </Directory>
</VirtualHost>
具体配置信息见以上代码注释,至此,我们就完成了虚拟主机的配置。怎么样?很简单吧?

版权声明:本文为博主原创文章,未经博主允许不得转载。

Apache之——配置虚拟主机

原文:http://blog.csdn.net/l1028386804/article/details/48140649

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!