I have redirection URL like “https://www.syncfusion.com/msdn” . if we entered this URL in browser, it goes to “https://www.syncfusion.com/home/aboutus?utm_medium=msdn”.
For this URL Redirection , created Route map in global.asax file “
routes.MapRouteLowercase(
"MSDN", // Route name
"newsletter", // URL with parameters
new { Controller = "root", Action = "Redirection", key = "msdn" }
// Parameter defaults
);
here i created seperate action to handle URL redirection.
So my request without registering Redirection URL in Global and without seperate action can we have redirecting URL to specified URL?.
In the controller itself you can do the same.
If you are redirecting to an existing url, then you can try