1.基于相同IP不同Port的虛擬主機(jī)1)vi /etc/http/conf/httpd.conf2)將Listen字段改為L(zhǎng)isten 80Listen 8888(以上設(shè)置表示使用80以及8888端口)3)更改虛擬主機(jī)部分為:; DocumentRoot /var/www/html/website1;; DocumentRoot /var/www/html/website2;4)保存以上設(shè)置5)創(chuàng)建目錄以及頁(yè)面文件:#mkdir –p /var/www/html/website1#mkdir –p /var/www/html/website2#cd /var/www/html/website1#cat >;index.html <;website1>;EOF#cd /var/www/html/website2#cat >;index.html <;website2>;EOF(注:在/etc/httpd/conf/httpd.conf中有DirectoryIndex index.html index.html.var,表示只讀index.html,而不讀index.htm,切記)6)service httpd restart完成以上設(shè)置后,可以通過(guò)以下方式訪問(wèn):1)打開(kāi)瀏覽器2)輸入http://192.168.0.1:80以及http://192.168.0.1:8888
2.基于相同Port不同IP的虛擬主機(jī)1)不同IP地址的配置:#cd /etc/sysconfig/network-scripts#cp ifcfg-eth0 ifcfg-eth0:1#vi ifcfg-eth0:1將eth0:1更改為:DEVICE=eth0:1ONBOOT=YESBOOTPROTO=staticIPADDR=192.168.0.2NETMASK=255.255.255.02)service network restart3)vi /etc/httpd/conf/httpd.conf4)更改虛擬主機(jī)部分為:; DocumentRoot /var/www/html/website1;; DocumentRoot /var/www/html/website2;5)創(chuàng)建目錄以及頁(yè)面文件:#mkdir –p /var/www/html/website1#mkdir –p /var/www/html/website2#cd /var/www/html/website1#cat >;index.html <;website1>;EOF#cd /var/www/html/website2#cat >;index.html <;website2>;EOF完成以上設(shè)置后,可以通過(guò)以下方式訪問(wèn):1)打開(kāi)瀏覽器2)輸入http://192.168.0.1:80以及http://192.168.0.2:80
3.基于域名的虛擬主機(jī)的訪問(wèn)1)vi /etc/http/conf/httpd.conf2)更改虛擬主機(jī)部分為:NameVirtualHost 192.168.0.1; DocumentRoot /var/www/html/website1 ServerName www1.example.com;; DocumentRoot /var/www/html/website2 ServerName www2.example.com;(注:以上設(shè)置中NameVirtualHost不可以省略)3)創(chuàng)建目錄以及頁(yè)面文件:#mkdir –p /var/www/html/website1#mkdir –p /var/www/html/website2#cd /var/www/html/website1#cat >;index.html <;website1>;EOF#cd /var/www/html/website2#cat >;index.html <;website2>;EOF4)完成以上設(shè)置后,可以通過(guò)以下方式訪問(wèn):1)打開(kāi)瀏覽器2)輸入http://www1.example.com 以及 http://www2.example.com