我想用 nginx 从
www.anysubdomain.domain.com?parameters , anysubdomain.com?parameters
至
www.domain.com?parameteres&anysubdomain
anysubdomain 或参数是可选的
我试过了
server_name ~^(?<subdub>.*).\domain\.com$;
rewrite ^ http://www.domain.com/?mode=$subdub permanent;
但这是错误的。