问题补充:
使用的是虚拟空间
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}.ashx/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
}
其他的还需要配置什么,试了很多方法还是http://localhost/
请求不与任何路由匹配
http://localhost/User.ashx/Index这个就可以正常访问