zoukankan      html  css  js  c++  java
  • asp.net mvc 默认首页设置静态文件

    1)站点根目录增加了index.html;

    2)修改Global.asax默认的路由注册,去掉默认controller:

    routes.MapRoute(
                    "Default", // 路由名称
                    "{controller}/{action}/{id}", // 带有参数的 URL
                    new {action = "Index", id = UrlParameter.Optional } // 参数默认值
                ); 

    3)将iis中的默认文档配置为index.html

  • 相关阅读:
    避免多次提交
    Django 10
    Django 08
    Django 07
    Django 06
    Django 05
    Django 04
    Django 03
    Django 02
    Django 01
  • 原文地址:https://www.cnblogs.com/kinolee/p/3713213.html
Copyright © 2011-2022 走看看