场景:
a.com 全站跳转 b.com
服务器场景
nginx → nginx + php
配置文件:
if ($host = 'www.a.com') {
rewrite ^ $scheme://www.b.com$uri?$args permanent;
}
导致问题:
www.a.com/x.cc?cao=nimei
red to :
www.b.com/x.cc?cao=nimei?cao=nimei
费解。参数这块 试了 document_uri request_uri。 请同学们赐教啦
1
13162951900 OP 结贴吧,我不知道hosts啥时候被改了。配置早就对了。后面用curl 测了一下location 立马看出问题了。 乌龙了sorry
|