Böyle deneyin.
routes.MapRoute(
name: "Category",
url: "kategori/{alias}",
defaults: new { controller = "Category", action = "List" }
);
routes.MapRoute(
name: "Product",
url: "urun/{alias}",
defaults: new { controller = "Product", action = "Detail" }
);