4

我有一个 NancyFx 应用程序,我在路径下设置了一个虚拟目录/photos。但是,当我浏览它时,我得到一个 404。我已经确保权限等是正确的,所以我想知道这是否与 NancyFx 劫持请求并寻找在我的/photos路径下定义的路由有关?

4

1 回答 1

6

最简单的方法是告诉 IIS 不要在 /photo 目录中使用 Nancy。您可以通过在 web.config 中添加位置来执行此操作,如下所示:

<location path="photo">
  <system.webServer>
    <handlers>
      <remove name="Nancy"/>
    </handlers>
  </system.webServer>
</location>

文档可以在这里找到:

https://github.com/NancyFx/Nancy/wiki/Managing-static-content#letting-iis-handle-static-content

于 2013-08-28T08:09:13.850 回答