I have two sites where i'd like to have a rewrite rule to redirect from one application to another.
Example
www.xyz.com/folder/folder/page.aspx?id1=1&id2=0&... (link can have any varible number of id's 1 - 25)
To
www.abc.com/folder/folder/page.aspx?id1=1&id2=0&... (number of id's will match the source number, but will be named differently)
I'm wondering since the id's are named differently if there would be no way to use a regex pattern? match id to id through mapping? instead of having to to a 1 to 1 mapping which could require alot of code... What is the best way to handle this?
TIA!!