我有一个NancyFx应用程序,我在路径/photos
下设置了一个虚拟目录。但是,当我浏览它时,我得到了404.我已经确定权限等..是正确的所以我想知道是否与NancyFx劫持请求并寻找在我的{{1}下定义的路由有关路径?
答案 0 :(得分: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