转载请注明出处:http://blog.csdn.net/l1028386804/article/details/48213523
Apache中配置多主机多站点,可以通过两种方式实现:
我们只需要修改相应的配置文件即可。
我是在我自己的电脑上操作的,我的系统是win7,所以先修改win7系统的hosts文件,增加两个域名映射,以便后面备用。hosts文件的路径是:C:/Windows/System32/drivers/etc/hosts,在这个文件中我们加入如下两行代码:
127.0.0.1 www.liuyazhuang.com 127.0.0.1 www.lyz.com这两行代码的意思是将www.liuyazhuang.com和www.lyz.com映射到本机的ip地址上。
在d:/Apache目录下分别准备两个站点myweb1和myweb2,这两个站点下分别有一个index.html文件,myweb1下index.html内容是"我是第一个站点",myweb2站点下的index.html内容是"我是第二个站点"。
具体如下图所示:
好了,到此,站点准备完毕
我们分别讲解两种不同的实现方案
在Apache的httpd.conf中,将监听端口修改为8080和8090,具体如下图所示:
在httpd.conf文件中找到如下代码:
DocumentRoot "D:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs"将这行代码注释掉,如下图:
在httpd.conf文件中找到如下代码:
# Virtual hosts #Include conf/extra/httpd-vhosts.conf将#Include conf/extra/httpd-vhosts.conf这行代码的注释打开,如下图:
我们说到的方案一和方案二,只是在配置httpd-vhosts.conf文件的时候有所不同。
将同一个域名的不同端口映射到不同的虚拟主机,不同端口映射到不同的站点
在httpd-vhosts.conf文件中添加如下代码:
#配置我们自己的虚拟主机 <VirtualHost www.lyz.com:8080> #配置访问跟目录 DocumentRoot "d:/Apache/myweb1" #这里配置欢迎首页面 DirectoryIndex index.html index.htm index.php <Directory /> Options FollowSymLinks #不允许别人修改我们的页面 AllowOverride None #设置访问权限 Order allow,deny Allow from All </Directory> </VirtualHost> #配置我们自己的虚拟主机 <VirtualHost www.lyz.com:8090> #配置访问跟目录 DocumentRoot "d:/Apache/myweb2" #这里配置欢迎首页面 DirectoryIndex index.html index.htm index.php <Directory /> Options FollowSymLinks #不允许别人修改我们的页面 AllowOverride None #设置访问权限 Order allow,deny Allow from All </Directory> </VirtualHost>具体如下图所示:
启动Apache在浏览器中输入:http://www.lyz.com:8080显示"我是第一个站点",输入:http://www.lyz.com:8090显示"我是第二个站点"。
将同一个端口映射成不同的域名,不同的域名映射到不同的站点。
在httpd-vhosts.conf文件中添加如下代码:
#配置我们自己的虚拟主机 <VirtualHost *:8080> #配置访问跟目录 DocumentRoot "d:/Apache/myweb1" ServerName www.lyz.com #这里配置欢迎首页面 DirectoryIndex news.html index.html index.htm index.php <Directory /> Options FollowSymLinks #不允许别人修改我们的页面 AllowOverride None #设置访问权限 Order allow,deny Allow from all </Directory> </VirtualHost> #配置我们自己的虚拟主机 <VirtualHost *:8080> #配置访问跟目录 DocumentRoot "d:/Apache/myweb2" ServerName www.liuyazhuang.com #这里配置欢迎首页面 DirectoryIndex news.html index.html index.htm index.php <Directory /> Options FollowSymLinks #不允许别人修改我们的页面 AllowOverride None #设置访问权限 Order allow,deny Allow from all </Directory> </VirtualHost>具体如下图所示:
启动Apache在浏览器中输入:http://www.lyz.com:8080显示"我是第一个站点",输入:http://www.liuyazhuang.com:8080显示"我是第二个站点"。