APACHE下多个域名绑定到一个目录的方法
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-20 15:03:32 浏览: 评论:0
有时我们做全国分站时会碰到要一个目录绑定多个二级域名了,那么在apache中要怎么快速绑定呢,下面我来给各位分享一下经验.
http.conf中如何修改,比如域名分别为www.site1.com;site1.com;www.phpfensi.com;目录为D:/PC_webserver/phproot/site 下面标准写法该如何写?代码如下:
ServerName www.phpfensi.com
DocumentRoot "D:/PC_webserver/phproot/site"
解决方法,代码如下:
- ServerName www.phpfensi.com
- ServerAlias site1.com
- ServerAlias www.site1.com
- DocumentRoot "D:/PC_webserver/phproot/site"
其实还有一种办法,我们直接这样改进,代码如下:
- <VirtualHost 192.168.1.108:108>
- ServerAdmin webmaster@dummy-host.www.phpStudy.net
- DocumentRoot "E:wwwcgd"
- ServerAlias www.phpfensi.com phpfensi.com
- </VirtualHost>
中间以空格分开即可.
Tags: APACHE多域名绑定 APACHE绑定目录
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)