mvc的 404 处理

1.编辑项目的web.config文件, 添加默认的处理
<?xml version="1.0"?>
<configuration>
 
  <system.web>
  
    <!-- 没有对应的controller时,选择Home.Path404函数 --->
    <customErrors mode="On" defaultRedirect="Home/Path404" />
    
  </system.web>
  
</configuration>
 
2.添加404的控制器
namespace MsgManFrame.Controllers
{
    public class HomeController : Controller
    {
    
        public ViewResult Path404()
        {
            return View("404");
        }
    }
}
 
3.添加404的view

posted on 2015-10-12 10:14  田归行  阅读(156)  评论(0编辑  收藏  举报

导航