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