共计 2553 个字符,预计需要花费 7 分钟才能阅读完成。
导读 | 本文主要介绍了 apache 虚拟主机配置的三种方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 |
记事本打开 httpd.conf 文件,该文件在 apache 的目录下,如:D:\AppServ\Apache2.2\conf,修改如下两处:
LoadModule vhost_alias_module modules/mod_vhost_alias.so // 去掉前面的 #,意思是启用 apache 的虚拟主机功能,第 203 行
Include conf/extra/httpd-vhosts.conf // 去掉 #的意思是从 httpd-vhosts.conf 这个文件导入虚拟主机配置
配置虚拟主机后 不能用 localhost 访问
只需要把 httpd.conf 文件的 ServerName localhost:80 那行注释掉 就可以了
假设服务器有个 IP 地址为 192.168.1.10,使用 ifconfig 在同一个网络接口 eth0 上绑定 3 个 IP:
[root@localhost root]# ifconfig eth0:1 192.168.1.11
[root@localhost root]# ifconfig eth0:2 192.168.1.12
[root@localhost root]# ifconfig eth0:3 192.168.1.13
修改 hosts 文件,添加三个域名与之一一对应:
192.168.1.11 www.test1.com
192.168.1.12 www.test2.com
192.168.1.13 www.test3.com
建立虚拟主机存放网页的根目录,如在 /www 目录下建立 test1、test2、test3 文件夹,其中分别存放 1.html、2.html、3.html
/www/test1/1.html
/www/test2/2.html
/www/test3/3.html
在 httpd.conf 中将附加配置文件 httpd-vhosts.conf 包含进来,接着在 httpd-vhosts.conf 中写入如下配置:
ServerName www.test1.com
DocumentRoot /www/test1/
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow From All
ServerName www.test1.com
DocumentRoot /www/test2/
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow From All
ServerName www.test1.com
DocumentRoot /www/test3/
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow From All
大功告成,测试下每个虚拟主机,分别访问 www.test1.com、www.test2.com、www.test3.com
设置域名映射同一个 IP,修改 hosts:
127.0.0.1 gm.998gx.com
127.0.0.1 www.998gx.com
127.0.0.1 r.998gx.com
127.0.0.1 localhost
跟上面一样,建立虚拟主机存放网页的根目录
/www/dxGM/index.php
/www/dxskadmin/index.php
/www/88qp/index.php
在 httpd.conf 中将附加配置文件 httpd-vhosts.conf 包含进来,接着在 httpd-vhosts.conf 中写入如下配置:
为了使用基于域名的虚拟主机,必须指定服务器 IP 地址(和可能的端口)来使主机接受请求。可以用 NameVirtualHost 指令来进行配置。如果服务器上所有的 IP 地址都会用到,你可以用 * 作为 NameVirtualHost 的参数。在 NameVirtualHost 指令中指明 IP 地址并不会使服务器自动侦听那个 IP 地址。这里设定的 IP 地址必须对应服务器上的一个网络接口。
下一步就是为你建立的每个虚拟主机设定配置块,的参数与 NameVirtualHost 指令的参数是一样的。每个定义块中,至少都会有一个 ServerName 指令来指定伺服哪个主机和一个 DocumentRoot 指令来说明这个主机的内容存在于文件系统的什么地方。
如果在现有的 web 服务器上增加虚拟主机,必须也为现存的主机建造一个定义块。其中 ServerName 和 DocumentRoot 所包含的内容应该与全局的保持一致,且要放在配置文件的最前面,扮演默认主机的角色。
DocumentRoot "D:/phpstudy/WWW/dxGM"
ServerName gm.998gx.com
DocumentRoot "D:/phpstudy/WWW/88qp"
ServerName www.998gx.com
DocumentRoot "D:/phpstudy/WWW/dxskadmin"
ServerName r.998gx.com
DocumentRoot "D:/phpstudy/WWW"
ServerName localhost
4. 大功告成,测试下每个虚拟主机,分别访问 gm.998gx.com、www.998gx.com、r.998gx.com
修改配置文件
将原来的
Listen 80
改为
Listen 80
Listen 8080
更改虚拟主机设置:
DocumentRoot /var/www/test1/
ServerName www.test1.com
DocumentRoot /var/www/test2
ServerName www.test2.com
到此这篇关于 apache 虚拟主机配置的三种方式 (小结) 的文章就介绍到这了