我的网络项目中有一个类 api 和一个功能测试。要调用此函数,我在浏览器中键入链接http://localhost/api/test。现在我的问题是可以调用默认页面,例如 index.html,如果我只调用没有函数的类,例如:http://localhost/api?
“我不使用 ASP.Net”
我的网络项目中有一个类 api 和一个功能测试。要调用此函数,我在浏览器中键入链接http://localhost/api/test。现在我的问题是可以调用默认页面,例如 index.html,如果我只调用没有函数的类,例如:http://localhost/api?
“我不使用 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>