如果实现一个服务器放多个网站,需要用到web服务器的虚拟主机。下面以apache的配置为例,讲解下通过域名实现多网站,其他的web服务器也都相似。
#网站1
DocumentRoot /www/example1
ServerName www.example1.com
ServerAlias example1.com. *.example1.com
options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
#网站2
DocumentRoot /www/example2
ServerName www.example2.org
options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
虚拟主机:IP、端口、域名,这仨都行。