I need to create an URL rewrite so that when the users type: mydomain.com/test123 the server gets: mydomain.com/?test123.
I tried this:
<rule name="UF" stopProcessing="true">
<match url="example.com/([_0-9a-z-]+)" />
<action type="Redirect" url="https://example.com/?{R:1}" />
</rule>