Hello All,
I'm attempting to create a simple redirect but keep receiving a 404 error.
what I am trying to do in iis8 using url rewrite it create a redirect using wildcards for the following
https://web.contoso.com/sites/finance* --> to -->https://web2015.contoso.com/sites/finance/sitepages/home.aspx
my web.config looks like
<rewrite>
<rules>
<rule name="Test1" enabled="true" patternSyntax="Wildcard" stopProcessing="true">
<match url="https://web.contoso.com/sites/finance*" />
<action type="Redirect" url="https://web2015.contoso.com/sites/finance/SitePages/Home.aspx" />
</rule>
</rules>
</rewrite>
again, I just get a 404 error. Any ideas?
Thank you