I am trying to get URL re-writing working on a IIS 8.5 server. I am having the same issue as described in this similiar post, that is a redirect works but rewrite does not.
The simple rule for testing purposes is:
<rule name="ReverseProxy" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="http://10.10.101.22:52797/{R:1}" />
</rule>
My goal is to rewrite URLs with only specific path to another internal server.
If I change the rule to redirect it works. On a similarly configured IIS 8.5 server the rewrite rule works.
AAR is installed and Enable proxy is checked.
After installing AAR I had to restart IIS for the AAR icon to appear.
I could not see anything in Failed Request Tracing that explains why this is happening.
Does anybody have any suggestions?