Hello,

I encountered a problem that ds_select_domain function does not save URI parameters.

I found workaround:

if (!ds_select_domain( "1", 4, 3 )) {
  send_reply("502", "Bad Gateway");
  exit;
}
if (!strempty($(ou{uri.params}))) {
  $ru = $ru+";"+$(ou{uri.params});
}

But this can lead to duplicates if the URI in the dispatcher list contains the same parameter.

Is there any other reliable way to keep original URI parameters while using the dispatcher?

Thanks