Tente isto:
location ~ /one/two {
if ($args ~ "path=([^&]+)&(.+)") {
set $path $1;
set $foo $2;
rewrite ^/one/two "/one/two/$path?$foo?" permanent;
}
}
Como eu reescrevo os URIs do formulário
/one/two?path=three&foo=bar
para
/one/two/three?foo=bar
usando o nginx?