I would like to keep the same server url. ex: 10.139.183.192 to all pages.
I don't want to show 10.139.183.192/Task/Create
The route must continues, when the user type on address bar. But I want to hide it.
I've been searching a lot about url rewrite, but I can't find a solution.
I've tried to change the Global asax, Register Routes, etc.
Shoud I change in the IIS Server or in the Application?
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}