底线:是否有一种方法允许绑定的IIS站点的子路径通过直接在http.sys中绑定的非IIS应用程序?
我在Windows Server 2008上使用IIS 7.5。我有一个现有的IIS站点绑定到一个特定的根url,比如fooapps.bar.com
。这个站点下面有几个应用程序和目录。所有这些都很有效。问题是我现在想允许fooapps.bar.com
的子路径传递到另一个直接注册http的服务。sys,不是IIS应用程序。
所以这个服务将自己与http绑定。sys at fooapps.bar.com/Services
。如果我停止绑定到fooapps.bar.com
的IIS站点,那么对fooapps.bar.com/Services
的请求将成功接收并由http处理。sys-bound服务。但是,如果IIS站点正在运行,那么所有对fooapps.bar.com/Services/*
的请求都会被IIS截获并返回错误,因为在相应的物理路径上实际上没有任何东西。我怎样才能告诉IIS完全忽略fooapps.bar.com/Services
,而让对该路径的请求通过http.sys中绑定的任何其他路径?
fooapps.bar.com (site)
+ Files (normal directory with static .html files)
+ SomeApp1 (application)
+ SomeApp2 (application)
+ nuget
+ Feed1 (application)
+ Feed2 (application)
+ Feed3 (application)
+ Services (??? How to make this pass through to separate http.sys binding?)
为所需的子树创建命名空间保留。在具有管理权限的命令行中执行:
netsh http add urlacl url=http://fooapps.bar.com:80/Services/ user=<samUserName>