在apache中可给apache配置多个虚拟主机我们需要在httpd.conf或在httpd-vhosts.conf文件配置即可了,下面是在httpd.conf的配置方法。
VirtualHost:在我的本机内 Apache 的主配置文件在:
- D:/usr/local/apache2/conf/httpd.conf
创建各个虚拟主机的子配置文件:创建 dbmanager 的配置文件:D:/usr/webroot/phpMyAdmin/httpd.conf
- #dbmanager 虚拟主机设置
- <VirtualHost 127.0.0.2:80>
- ServerName www.hzhuti.com
- DocumentRoot D:/usr/webroot/phpMyAdmin
-
- <Directory D:/usr/webroot/phpMyAdmin>
- AllowOverride All
- Options All
- </Directory>
- </VirtualHost>
创建 phpweb20 的配置文件:D:/usr/webroot/Zendphpweb20/httpd.conf
- #phpweb20 虚拟主机设置
- <VirtualHost 127.0.0.3:80>
- ServerName 111cn.net
- DocumentRoot D:/usr/webroot/Zendphpweb20/htdocs
- <Directory D:/usr/webroot/Zendphpweb20/htdocs>
- AllowOverride All
- Options All
- </Directory>
- #修改 PHP 配置(可选)
- php_value include_path .;D:/usr/webroot/Zendphpweb20/include;D:/usr/local/php5/PEAR
- php_value magic_quotes_gpc off
- php_value register_globals off
- </VirtualHost>
各个虚拟主机的配置就看应用站点的不同需要了,DocumentRoot 为其根目录(php_value 是修改此站点的 PHP 运行参数,根据自己应用的需要来写,这样就不必修改 PHP 主配置文件)。
重启 Apache 服务:
在httpd-vhosts.conf中配置,在httpd-vhosts.conf配置之前我们需要在apache的httpd.conf找到
- # Virtual hosts
- #Include conf/extra/httpd-vhosts.conf
把前面的#号去了,然后进入extra/httpd-vhosts.conf,写法与在httpd.conf 一样了。
|