My asp.net mvc 2 app requires a mandate parameter as part of all urls. (The mandate id will later help keeping seperate "virtuell installations" apart.) To make this work I added a route like this:
routes.MapRoute(
"Default", // Route name
"{mandate}/{controller}/{action}/{id}", // URL with parameters
new { mandat = "2" /* hardcoded for now */,
controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
This works fine except for authentication redirects. If I try to access a function with [Authorize] attribute http://localhost:63174/2/Account/ProtectedAction I get redirected to http://localhost:63174/Account/LogOn?ReturnUrl=%2f2%2fAccount%2fProtectedAction. [Note the missing mandate parameter before /Account/LogOn.]
How can I fix the redirection process to handle the additional parameter correctly?
Thanks, Duffy