为什么这个Core 1 Web应用程序不会呈现输出?

时间:2016-08-14 03:51:25

标签: html asp.net-core

我刚刚开始关注教程,甚至没有常青树#Hello Hello"的工作原理。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>Hello</title>
</head>
<body>
    <h1>Hello</h1>
</body>
</html>

这是在wwwroot中,项目中的任何其他代码都是VS生成的样板文件。我希望在运行项目时在我的页面上看到Hello标题,但是没有任何可见的内容,即使我查看页面源页面完全是白雪公主。

1 个答案:

答案 0 :(得分:2)

如果您希望ASP提供index.html文件,则需要在UseDefaultFiles() UseStaticFiles()方法中添加Startup.csConfigure()来启用它。

https://docs.asp.net/en/latest/fundamentals/static-files.html#serving-a-default-document