Iplanet webserver retaining the URI query string data.

Current Situation:

  1. Visit: https://xyz.com/2015/september?trackingparam=1234
  2. The URL is missing the trailing / after the �september� directory
  3. The URL is redirected and rewritten to: https://xyz.com/2015/september/ , dropping the query string data.
    Note: https://xyz.com/2015/september/?trackingparam=1234 works just fine since it's pointing to a file, not a directory, so no redirection occurs. Here's an example of what we would like to happen:

Expected Result:

  1. Visit: https://xyz.com/2015/september?trackingparam=1234
  2. The URL is missing the trailing / after the �september� directory
  3. The URL is redirected and rewritten to: https://xyz.com/2015/september/?trackingparam=1234 , retaining the query string data.