I am using the code below
<rule name="Redirect to url" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^page-name/([^/]+)/?$" />
</conditions>
<action type="Redirect" url="page-name/?id={R:0}" redirectType="Permanent" />
</rule>
but I get 404 error if I use this code. what is the problem in this code?
source
share