I would like to display the full URL when someone navigates to the root of my website. If they navigate to www.mysite.com, the default routing properly handles it and displays t
The only solution I could find was to check in the controller for the current URL and redirect if it was the root.
var url = Request.RawUrl; if (url == @"/") { Response.Redirect("/Unity/Hygiene"); } return View();