
原因是我的ASP.NET MVC3项目没有首页,而IIS设置的默认文档Index.asp也不生效了。
ASP.NET MVC3网站设置首页为html或asp文件
打开Global.asax,添加如下代码即可解决:
protected void Application_BeginRequest(object sender, EventArgs e)
{
if (Context.Request.FilePath == "/") Context.RewritePath("Index.asp");
}
评论(0)
暂无评论。