我在使用 IIS 8.0 显示我的网页时遇到了一些问题。现在,当我打开我的页面时,我没有收到任何错误,IIS
但现在它只出现:
本地主机 - /
日期时间文件夹名称
日期时间文件夹名称
日期时间文件夹名称
我应该怎么做才能显示我的网页?我已经选择checked
了。ASP.NET
Active or Desactive Windows Features
control panel
Did you check to make sure you have a default webpage? E.g. index.html, index.asp, default.html or default.asp? The names are based on the settings of the site of course.
Make a basic html page:
<html>
<body>
Hello world.
</body>
</html>
Then put it in the directory IIS is looking for, for the website. You'll want to make sure you setup your DNS to reflect the domain you are trying to host, and then change your local network settings to use your computer's IP before any other DNS. This will allow you to see the website.
如果您想为您的默认页面使用自定义页面名称,例如“mypages.aspx”,您可以在您的web.config
<system.webServer>
<defaultDocument enabled="true">
<files>
<add value="~/mypages.aspx"/>
</files>
</defaultDocument>
</system.webServer>
您可以在 IIS 中执行相同的操作,转到 IIS 中DefaultDocument
部署的站点设置下的部分。检查这个和这个问题,因为您正在使用 IIS8 获取更多信息。