I have url like
domain.com/posts/id/title
I want to change URL
domain.com/title-xxx-id
id and title querystring parameters. -xxx- is static.
I had used
<rule name="Redirect to WWW" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^olddomain.com$" />
</conditions>
<action type="Redirect" url="https://newdomain.com/{R:0}"
redirectType="Permanent" />
</rule>
to domain change but now I need url change in same domain and I have two parameters