热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Apache绑定多个域名主机站点时需要注意的问题

Aapche如果需要绑定多个域名到一个IP上,是支持的。需要注意以下2点:1必须要开启NameVirtualHost开关选项,如:NameVirtualHost220.231.220.231:802NameVirtualHost需要指定具体的端口例如:80,跟VirtualHost220.231.32.*:80对应,否
Aapche 如果需要绑定多个域名到一个IP上,是支持的。需要注意以下2点:

1 必须要开启 NameVirtualHost开关选项,
如:NameVirtualHost 220.231.220.231:80

2 NameVirtualHost 需要指定具体的端口
例如":80",跟对应,否则会报错:
mixing * ports and non-* ports with a NameVirtualHost address is not supported, proceeding with undefined results。
翻译过来就是: NameVirtualHost 地址,指定端口和不指定端口混合使用是不支持的,将会产生未逾期的后果。
未逾期的后果就是: 第2个不起作用,仅当一个站点设置起作用。

完整的例子:
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
NameVirtualHost 219.133.61.226:80

     ServerAdmin hot@vip.qq.com
     DocumentRoot /usr/local/apache2/htdocs1
     ServerName www.server110.com
     ErrorLog logs/server110.com-error_log
     CustomLog logs/linux51.com-access_log common



     ServerAdmin hot@vip.qq.com
     DocumentRoot /usr/local/apache2/htdocs2
     ServerName www.x.com
     ErrorLog logs/x.com-error_log
     CustomLog logs/x.com-access_log common


推荐阅读
author-avatar
2364118915_86406b_479
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有