欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

一个IP多个站点配置有关问题

程序员文章站 2024-02-04 17:15:40
...
一个IP多个站点配置问题
我想把两个域名解析到同一个209.221.156.243这个IP上,但是配置apache后 两个域名始终指向同一个站
配置代码如下:
NameVirtualHost 209.221.156.243:80


ServerName xx.com
DocumentRoot d:/aa
ErrorDocument 404 /404.html
ErrorLog "|bin/rotatelogs.exe -l d:/aa/logs/errorlog.%Y-%m-%d-%H_%M_%S.log 86400"
CustomLog "|bin/rotatelogs.exe -l d:/aa/logs/access%Y-%m-%d.log 86400" combined
RewriteEngine on
RewriteCond %{HTTP_HOST} ^xx.com [NC]
RewriteRule ^(.*)$ http://www.xx.com$1 [L,R=301]
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]


ServerName yy.com
DocumentRoot d:/bb
ErrorDocument 404 /404.html
ErrorLog "|bin/rotatelogs.exe -l d:/bb/logs/errorlog.%Y-%m-%d-%H_%M_%S.log 86400"
CustomLog "|bin/rotatelogs.exe -l d:/bb/logs/access%Y-%m-%d.log 86400" combined
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yy.com [NC]
RewriteRule ^(.*)$ http://www.yy.com$1 [L,R=301]
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]


访问yy.com却访问到xx.com的程序!网上找了很多也没找到正解 望高手们帮看看

------解决方案--------------------
同一个端口怎么识别呢?
------解决方案--------------------
并没有发现写法上的问题,我也是这么写的
可能与 apache 的版本或其他设置有关
一个IP多个站点配置有关问题

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 一个IP多个站点配置有关问题
  • 专题推荐