謝謝大家。我分享我的工作配置
//Ưu tiên Search
routes.MapRoute(name: "search", url: "{lang}/search/{keyword}", defaults: new { controller = "search", action = "result" });
//Normal with Language
routes.MapRoute(
name: "Language",
url: "{lang}",
defaults: new { controller = "Home", action = "Index", lang = UrlParameter.Optional },
constraints: new { lang = @"(\w{2})" }
);
//News Category
routes.MapRoute(
name: "defaultLanguageWithCate",
url: "{cateSlug}",
defaults: new { lang = "vi", controller = "News", action = "NewsByCate" },
constraints: new { lang = @"(\w{2})", controller = "News", action = "NewsByCate" },
namespaces: new[] { "Frontend.Web.Controllers" }
);
routes.MapRoute(
name: "languageWithCate",
url: "{lang}/{cateSlug}",
defaults: new { lang = "vi", controller = "News", action = "NewsByCate" },
constraints: new { lang = @"(\w{2})", controller = "News", action = "NewsByCate" },
namespaces: new[] { "Frontend.Web.Controllers" }
);
//News Detail
routes.MapRoute(
name: "defaultLanguageWithArticle",
url: "{cateSlug}/{articleSlug}",
defaults: new { lang = "vi", controller = "News", action = "Detail" },
constraints: new { lang = @"(\w{2})", controller = "News", action = "Detail" },
namespaces: new[] { "Frontend.Web.Controllers" }
);
routes.MapRoute(
name: "languageWithArticle",
url: "{lang}/{cateSlug}/{articleSlug}",
defaults: new { lang = "vi", controller = "News", action = "Detail" },
constraints: new { lang = @"(\w{2})", controller = "News", action = "Detail" },
namespaces: new[] { "Frontend.Web.Controllers" }
);
//Không có Language
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional, lang = "vi" }
);
什麼是控制器的方法與每個相關聯,你想讓url看起來像什麼?例如5號,你想要'../ fr/News/Detail/10'(或者也許只是'..fr/Details/10')來顯示'ID = 10'的News項目的細節用法語? –
對於那些不熟悉Drupal的人來說,這個問題相當模糊,但[這個答案](http://stackoverflow.com/a/32839796/181087)可能會讓你朝正確的方向發展。 – NightOwl888
{root}/{catePermanentLink}/{newsPermanentLink} ==>使用默認語言的新聞細節。 {root}/fr/{catePermanentLink}/{newsPermanentLink} ==>使用FR語言的新聞細節 – Linc