Using IIS url rewrite how can I remove the entire query string specific to this link only
Change from
to this
Using IIS url rewrite how can I remove the entire query string specific to this link only
Change from
to this
You could refer to the steps below to remove the query string using the URL Rewrite module in the IIS.
(.*) as Pattern.{QUERY_STRING} for Condition Input, select Matches the pattern option for Check if input string dropdown, set \_cldee=(.*) as pattern. Click OK.http://{HTTP_HOST}/{R:0} as Redirect URL.Permanent(301) as Redirect Type drop-down.Output:
Further, you could try to modify the rule above as per your own requirement.