I have an MVC website , on product page I have link for every product to view product in detail. My controller is :
 public ActionResult ViewProduct(string id, string title)
        {
}
Route Config:
routes.MapRoute(
                name: "viewProduct",
                url: "ShopWindow/Product/{title}/{id}",
                defaults: new { controller = "ShopWindow", action = "ViewProduct" , title  = UrlParameter.Optional, id = UrlParameter.Optional }
                );
when user click on any product link, in the browser url shows like :
   http://localhost:53298/ShopWindow/Product/ADAM-LEVINE-100ML/59fc90e63bf0de22006c332e
I was wondering is there a way to remove/hide the product id from the URL like:
   http://localhost:53298/ShopWindow/Product/ADAM-LEVINE-100ML/
Thanks
