My URL is Test/index?we=1 In need to rewrite rule like sample/index.aspx Please help ...
I tried this rule:
<rule name="shajilTest">
<match url="Test/index?we=1" />
<action type="Redirect" url="sample/index.aspx" />
</rule>
using this rule i am getting redirected but query string is getting append in like
sample/index.aspx?we=1
i need to redirect like this
sample/index.aspx
Go to the complete details ...