4
在IIS中是否有Apache的mod_proxy等價物?Apache的ProxyPass和ProxyPassReverse等效於IIS
我已經按照我的Apache的httpd.conf配置(mod_proxy的啓用):
Header add Set-Cookie "ROUTEID=hej.%{BALANCER_WORKER_ROUTE}e; path=/;" env=BALANCER_ROUTE_CHANGED
<Proxy balancer://openfire>
BalancerMember http://server2:7070/http-bind/ route=1
ProxySet stickysession=ROUTEID
</Proxy>
ProxyPass /project1/http-bind balancer://openfire nofailover=Off
ProxyPassReverse /project1/http-bind balancer://openfire
我需要爲IIS做類似的配置。我嘗試了ARR(應用程序請求路由),但無法使其工作。
有人可以幫助我實現這一目標嗎?
謝謝。
是的,quickets選項將谷歌爲「IIS反向代理」,你會發現喜歡: http://blogs.iis.net/carlosag/archive/2010/04/01/setting -up-a-reverse-proxy-using-iis-url-rewrite-and-arr.aspx http://www.iis.net/learn/extensions/url-rewrite-module/reverse-proxy-with- URL重寫-V2和應用程序請求路由 – arober11