Hi ,
My application is running on specific context called "appcontext"
This is not redirecting if i use the below <rule>
<rule>
<name>Domain Remapping </name>
<condition name="host" operator="equal">
abc.net</condition>
<condition name="host" operator="notequal">^$</condition>
<from>^/(.*)</from>
<to last="true" type="permanent-redirect">
http://www.abc.com/
appcontext/$1</to>
</rule>
---
and it is working fine only if i give context path after the domain
like
abc.net/appcontext/ then redirectes to
www.abc.com/appcontext/
Please advice me how should i make it work from
abc.net to
abc.com
without giving the context path(but my application is running on
context path).
Regards,
Mahesh.