为什么远程服务器上的 api 出现 404 错误
Why getting 404 error for the api's on remote server
我有一个 ASP.Net WebApi 项目。我已经在我的本地机器 IIS 上部署了它。
在我的本地机器上 api 运行良好。此后,我将这组文件从本地机器复制到远程机器。
但是从远程机器访问 API 时,我收到所有 api 的 404 错误。
我交叉检查了机器上的 IIS 配置。他们都是一样的。
本地 IIS
远程 IIS
http://localmachine/api/user/customer - 在本地 运行 很好。
http://remotemachine/api/user/customer - 远程 Http 404 错误。
任何 help/suggestion 高度赞赏。
谢谢。
尝试将您的 webconfig
放入模块部分...
<modules runAllManagedModulesForAllRequests="true">
<remove name="WebDAVModule"/>
<remove name="FormsAuthentication"/>
</modules>
我有一个 ASP.Net WebApi 项目。我已经在我的本地机器 IIS 上部署了它。
在我的本地机器上 api 运行良好。此后,我将这组文件从本地机器复制到远程机器。
但是从远程机器访问 API 时,我收到所有 api 的 404 错误。
我交叉检查了机器上的 IIS 配置。他们都是一样的。
本地 IIS
远程 IIS
http://localmachine/api/user/customer - 在本地 运行 很好。
http://remotemachine/api/user/customer - 远程 Http 404 错误。
任何 help/suggestion 高度赞赏。
谢谢。
尝试将您的 webconfig
放入模块部分...
<modules runAllManagedModulesForAllRequests="true">
<remove name="WebDAVModule"/>
<remove name="FormsAuthentication"/>
</modules>