I have two applications using ASP.NET MVC, each with multiple controllers.
I want to make a redirect from application A to application B, but only for one route in application A (one controller).
Eg.
/ applicationA / issue / * should be redirected to / applicationB / issue /
/ applicationA / quality / should not be redirected
IIS redirection examples show me examples of how to click a file / folder and enable redirection, but I'm trying to execute a route, not a physical path.
I do not want to change the source of ASP.NET (if at all possible).
Thanks.
edit is in IIS6 on Win2k3.
source share