Looking for strongly replacement GET parameter with fixed value
something like :
http://domain.com/index.php?alfa=1&beta=2&debug=true
to
http://domain.com/index.php?alfa=1&beta=2&debug=false
may be
if ($args ~ "debug=true") {
set $args_debug false;
return 301 $uri;
}
but not work