I am working with DNN website, which works with different domains, i mean to say one website is working with multiple domains, layout and pages all categorizes with Different portals. every Portal has its own pages and content. Now i have to write some rewrite rules for the different portal. for main portal i have used the following concept to write the rule :
<rule name="r7" stopProcessing="true">
<match url="^vows/tabid/(.*)id/([0-9]+)/Default.aspx" ignoreCase="true"/>
<action type="Redirect" url="/plan/brochure.aspx"/>
</rule>
Now for another domain(portal) example www.abc.uk.co. how can i write rules for this portal. if i write the URL in rule it does not work for me. and if i write in the above format then it cause to redirect for first domain also.
Please help me how can i achieve my goal. any kind of help will be appreciated. Thank you