Internet Information Services
Microsoft web server software.
1,687 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello everyone,
I am new to iis. I want to redirect the current url to another url, can anyone help me?
Current URL: http://mvclocaltest/dev/?privateaccount=125645
Redirect URL: http://mvclocaltest/dev/?privateaccount=125645ade
Hi @CT693303
You can try this rule:
<rule name="test" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{REQUEST_URI}" pattern="^/dev/\?privateaccount=125645" />
</conditions>
<action type="Redirect" url="dev/?privateaccount=125645ade" />
</rule>
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.