I need to redirect from example.com/landing to example.com/blog/info/landing. I wrote a rule in web.config
<rule name="Atlanta redirect" stopProcessing="true">
<match url="landing" />
<action type="Redirect" url="https://www.example.com/blog/info/landing" redirectType="Permanent" />
</rule>
but if url matches "landing" word then it redirect to example.com/blog/info/landing too.
For example correct redirect: example.com/landing -> example.com/blog/info/landing
Wrong redirect example.com/somepage/1/landing -> example.com/blog/info/landing