一台linux服务器 怎样放两个网站?
发布网友
发布时间:2022-04-25 09:21
我来回答
共1个回答
热心网友
时间:2022-04-22 09:02
如果实现一个服务器放多个网站,需要用到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
参考:PHP程序员,雷雪松的个人博客--http://www.leixuesong.cn/320