I'm trying to create a http://www.domain.com/product route.
It should look in the database for the product name and, if found, calls a controller and, if not, follows to the next route.
I've tried to create the route bellow, but I could not figure how to follow to the next routes in case {shortcut} product name is not found in the database.
routes.MapRoute(
  name: "easyshortcut",
  url: "{shortcut}",
  defaults: new { controller = "Home", action = "Product" }
);
Thanks