torrent_yxd 发表于 2011-11-8 12:02:06

虚拟主机目录重定向问题

大哥!我在/home/wwwroot下分别有几个目录对于几个虚拟主机目录,vhost也配置正确了,现在我想访问 www.myhost1.com/test/,www.myhost2.com/test/时,都指向/home/wwwroot/test/,应该如果配置?

torrent_yxd 发表于 2011-11-8 12:22:27

我翻了下帖子,可以这样做
在www.myhost1.com.conf下加以下代码
                location /test/
                        {
                              rewrite ^/(.*)$ http://xxx.xxx.xxx.xxx/$1 permanent;
                        }

但是军哥能不能给个更好的方法,让url显示的仍旧是www.myhost1.com/test/呢?

licess 发表于 2011-11-8 14:26:40

除了location 好像没有其他方法
页: [1]
查看完整版本: 虚拟主机目录重定向问题