Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是关于我昨天的问题
现在,我将此服务部署在两台不同 PC 上的两个相同的 IIS 上。此服务在我的 PC 上的 IIS 上运行良好,在其他服务器上不起作用:
The resource cannot be found. Description: HTTP 404. The resource you are looking for...
相同的代码、相同的程序集、相同的 Web.config 文件。而且我无法找出这些 IIS 之间的区别。
谁能帮我这个?
我已经解决了这个问题。问题是我在同一个应用程序中开发了 MVC3 网站和 WCF 服务,我必须添加以下代码才能解决这个问题:
routes.IgnoreRoute("{resource}.svc/{*pathInfo}");
我希望它对将在同一应用程序中使用 WFC 和 MVC 的人有所帮助。