Rewrite rule with in url

Hi - I’ve got a plugin which was misconfigured - and now I need to
rewrite a
string - however I cannot find out at all how to do this for urls with ?
in
them.

So I need to have:
www.velomap.org/de/?s2member_paypal_notify=1
rewritten to www.velomap.org/?s2member_paypal_notify=1
(note the /de missing).

I tried:
server { server_name www.velomap.org/de/?s2member_paypal_notify=1
return 301
$scheme://www.velomap.org/?s2member_paypal_notify=1$request_uri?;
}

but this is not accepted as valid nginx.conf…

So I need this rewritten and it is important that whatever string is
following this is not lost…

(also - but less important) - how can I rewrite a specific url?
So I want to rewrite

to www.velomap.org

Posted at Nginx Forum:

Will this work correctly with all the arguments followed?

location = /de/ {
if ( $arg_s2member_paypal_notify ) {
rewrite ^ / permanent;
}
}

Posted at Nginx Forum:

okay - I noticed my homepage wouldn’t load for VeloMap.org - Fahrrad, Rennrad -Karten basierend auf Openstreetmap
anymore
with this rule -

location = /de/ {
if ( $arg_s2member_paypal_notify ) {
rewrite ^ / permanent;
}
try_files $uri $uri/ /index.php;
}

Seems to work - well I hope this is passing on all information correctly
still…

Posted at Nginx Forum: