0

我的网络项目中有一个类 api 和一个功能测试。要调用此函数,我在浏览器中键入链​​接http://localhost/api/test。现在我的问题是可以调用默认页面,例如 index.html,如果我只调用没有函数的类,例如:http://localhost/api

“我不使用 ASP.Net”

4

1 回答 1

0

我在 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>
于 2015-05-20T15:02:06.357 回答