标签:
伪静态能提高搜索引擎收录,还不影响硬盘寿命,是一个不错的选择,但是会增加CPU和内存开销,由于时候也需要实现伪静态。
<system.webServer> <modules runAllManagedModulesForAllRequests="true" /> </system.webServer>
routes.MapRoute( name: "Default", url: "{controller}/{action}.html", defaults: new { controller = "Home", action = "Index" } );
home/index.html?page=1
home/index/1.html (这种写法无法自定义参数名称,只能使用路由里配置的参数名称)
public ActionResult Welcome(int? page) { ViewBag.Message = "第"+page+"页"; return View(); }
public ActionResult Welcome(int page=1) { ViewBag.Message = "第"+page+"页"; return View(); }
标签:
原文地址:http://www.cnblogs.com/shya/p/4417727.html