In my application I have various Views and Controllers.
So naturally when one navigate through pages the URL will change based on the Controller and the View;
E.g.
http://example.com/home/indexhttp://example.com/account/registerhttp://example.com/product/newproduct
But I would like to keep the Controller and View name in the address bar secret, in other words when one would navigate, the address bar always shows http://example.com
Does anyone know how to hide these routes? I'm an using ASP.NET MVC 4 C# application.
Basically just need the server to keep track of the pages.