码迷,mamicode.com
首页 > 其他好文 > 详细

多站点配置

时间:2016-05-14 11:30:00      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

一:
Apache\conf\extra\httpd-vhost.conf  虚拟目录配置文件

添加两个站点

<VirtualHost *:80>
#    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot "C:/www/w1"
    ServerName w1.com
#    ServerAlias www.dummy-host.example.com
#    ErrorLog "logs/dummy-host.example.com-error.log"
#    CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>


<VirtualHost *:80>
#    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot "C:/www/w2"
    ServerName w2.com
#    ServerAlias www.dummy-host.example.com
#    ErrorLog "logs/dummy-host.example.com-error.log"
#    CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>


二:
修改Apache\conf\httpd.conf,包含httpd扩展
# Virtual hosts
Include conf/extra/httpd-vhosts.conf

三:


修改http.conf,允许其它ip访问



四:
windows下修改
C:\WINDOWS\system32\drivers\etc\hosts
增加

linux下
vi /etc/hosts

多站点配置

标签:

原文地址:http://www.cnblogs.com/lly-001/p/5492153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!