MVC3路由:匹配任何字符串

时间:2012-04-07 12:57:40

标签: asp.net-mvc-3 routing url-routing string-matching

简单问题:

如何匹配MVC3路由系统中的字符串?

示例:

{sub}.domain.com/{contoller}/{action}/{id}

sub = [Match any string here]

1 个答案:

答案 0 :(得分:1)

您的问题似乎是answered here

基本上,要访问{subdomain} .domain.com,普通路由处理程序将不会在那里查找,但您可以创建自己的自定义Route类,并在Global.asax Application_Start()中注册它