我这个网站是用.NET MVC开发的!
问题是我现在要在服务器主机里设置默认首页,用的是阿里云独享主机,不存在什么IIS管理器,MVC只有控制器跟路由,没有页面这个说法,请问各位大神能给点意见!谢谢!!
我这个网站是用.NET MVC开发的!
问题是我现在要在服务器主机里设置默认首页,用的是阿里云独享主机,不存在什么IIS管理器,MVC只有控制器跟路由,没有页面这个说法,请问各位大神能给点意见!谢谢!!
App_Start目录
RouteConfig.cs文件里
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
//修改上面的 controller 和 action 就可以了。
);
}
}