Having issues redirecting an old URL that has parenthesis in it to a new URL. Have both of these in web.config and neither work.
<rule name="page1" stopProcessing="true">
<match url="Old_Page_(sometext)" />
<action type="Redirect" url="thewebsite/The-New-Page" />
</rule>
<rule name="page12" stopProcessing="true">
<match url="Old_Page_%28sometext%29" />
<action type="Redirect" url="thewebsite/The-New-Page" />
</rule>
I know %28 and %29 appear in the URL in the browser, but neither redirect works and it just ends up on the 404 page. I researched it, but could not find anything useful. All the other redirects, those without special characters, work fine.
Any help would be appreciated.