I have the redirect for the URL portion working, but the Query String is not changed. How do I redirect the ENTIRE URL to lower case? https://dummyURL.com?Query=FOO to https://dummyurl.com?query=foo
Currently I have this:
<rule name="Convert to lower case" stopProcessing="true">
<match url=".*[A-Z].*" ignoreCase="false" />
<action type="Redirect" url="{ToLower:{R:0}}" redirectType="Permanent" />
</rule>
Any assistance would be most helpful
This is a Windows 10 application and is a showstopper
You can use this example as a reference: