I added support query string in release 1.02.
Nop 4.00 allows redirect .php urls from the box, but nop 3.90 doesn't allow it.
Instruction for nop 3.90.
1. Install UrlRewrite
https://www.iis.net/downloads/microsoft/url-rewrite2. Add this rule in web.config
<rules>
<rule name="PHPToASPNET" stopProcessing="true">
<match url="card.php[/]?$" />
<action type="Redirect" url="cardphp" appendQueryString="true" redirectType="Permanent" />
</rule>
</rules>
Example of all block
3. You want to redirect this old URL
card.php?type=123456UrlRewrite will redirect this URL
card.php?type=123456 to new Url
cardphp?type=123456Add this URL (without dot) in the list of RedirectManager