开启Proxy项:
该设置表面只有HTTP_HOST为phpweb.leven.com.cn的URL才能通过该规则,如果您绑定了多个域名,可以根据多次增加或者通过正则表达式的|来间隔
最后在下面的Action中配置代理路径:
在这儿,{R:1}代表了MatchUrl中的第一个匹配括号
同样配置的web.config文件如下:
1 <rewrite> 2 <rules> 3 <rule name="levenblog"> 4 <match url="^(.*)" /> 5 <conditions> 6 <add input="{HTTP_HOST}" pattern="^levenblog.leven.com.cn$" /> 7 </conditions> 8 <action type="Rewrite" url="http://localhost:8080/{R:1}" /> 9 </rule> 10 <rule name="realblog"> 11 <match url="^(.*)" /> 12 <conditions> 13 <add input="{HTTP_HOST}" pattern="^realblog.leven.com.cn$" /> 14 </conditions> 15 <action type="Rewrite" url="http://leven.com.cn/{R:1}" /> 16 </rule> 17 <rule name="phpweb"> 18 <match url="^(.*)" /> 19 <conditions> 20 <add input="{HTTP_HOST}" pattern="^phpweb.leven.com.cn$" /> 21 </conditions> 22 <action type="Rewrite" url="http://localhost:8081/{R:1}" /> 23 </rule> 24 </rules> 25 </rewrite>