Rewrite query string url in web.config in PHP Rewrite query string url in web.config in PHP wordpress wordpress

Rewrite query string url in web.config in PHP


I am using below code

<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 am getting 404 Error if I use this code. what is the problem in this code?