When i redirect from a Controller using
RedirectToAction("Index", "Controller");
Or Generate a link with UrlHelper
@Url.Action("Index","Controller");
In both ways the "/Index" Part is striped down from my URL. Although for SEO Purposes i want my url to be displayed always at the same manner.
www.domain.com/en/Controller/Index
but now i get
www.domain.com/en/Controller
How can i force these two methods above always display the "/Index" Part.
P.S I know this happens because "Index" is indicated as a Default action on my route, but either way i want it to be displayed.