我想将我的网址基于语言本地化,例如:
我目前正在使用ASP.NET MVC 5属性路由。
[RoutePrefix("{language}/recipes")]
public class RecipesController : BaseController
{
[Route("manage")]
public ActionResult Manage()
{
...
}
}
两个问题:
谢谢!
编辑:让它按如下方式运作:
[Route("{language:regex(nl)}/recepten/beheren")]
[Route("{language:regex(en)}/recipes/manage")]
public ActionResult Index()
{
}
不确定这是否是最佳方法,但它有效......