routes.Add("DomainRoute_ProductDetail", new DomainRoute(
"{user}.baidu.com", // Domain with parameters
"product/{id}", // URL with parameters
new { controller = "Product", action = "Detail", englishName = UrlParameter.Optional } // Parameter defaults
));
泛解析现在是没有问题,但我想加上伪静态,但怎么都加不上"product/{id}.html"这样写不行。。