Apache之——配置虚拟主机

时间:2022-09-01 20:55:28
转载请注明出处:http://blog.csdn.net/l1028386804/article/details/48140649

一、修改httpd.conf文件

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

Apache之——配置虚拟主机

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

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

Apache之——配置虚拟主机

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

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

如下图:

Apache之——配置虚拟主机

二、修改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>
具体配置信息见以上代码注释,至此,我们就完成了虚拟主机的配置。怎么样?很简单吧?