Hi,
I want to redirect this page:
/p/how-it-works
to
/how-it-works
And i've setup this rule:
<rule name="test" patternSyntax="Wildcard" stopProcessing="false">
<match url="*/p/how-it-works*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Redirect" url="/how-it-works" />
</rule>
However, it does not work. I'm unable to find out why.
Any clues?
Thanks in advance.
Alex