在 vb.Net 网络项目中设置默认网页

Set default webpage in vb.Net web-project

我的网络项目中有一个 class api 和一个功能测试。要调用此函数,我键入 link http://localhost/api/test in my browser. Now my question is it possible to call a default page, for example index.html, if i just call the class without the function like: http://localhost/api ?

"I doesn't use ASP.Net"

我在 web.config 文件中使用以下代码通过重定向解决了这个问题。

<configuration>
   <system.webServer>
      <httpRedirect enabled="true" exactDestination="true" httpResponseStatus="Found">
         <add wildcard="*api" destination="/index.htm" />
         <add wildcard="*api/" destination="/index.htm" />
      </httpRedirect>
   </system.webServer>
</configuration>