I have a web.config file that I use to redirect specific pages for SEO reasons.
I want to redirect the content of one folder www.sample.com/pro/bcn to another folder www.sample.com/pro/barcelona on the same site, But I don't know how.
<configuration>
<system.webServer>
<httpRedirect enabled="true" exactDestination="true" httpResponseStatus="Permanent">
<add wildcard="/forms/newsconfirmH.htm destination="/forms/NewsletterformH.htm" />
</httpRedirect>
</system.webServer>
</configuration>
Please help.