2012-06-04 37 views

回答

0

是的,可以使用URL重寫模塊。您的規則如下所示:

<rule name="Redirect non app" stopProcessing="true"> 
    <match url="^app(.*)" negate="true" /> 
    <action type="Redirect" url="http://www.othersite.com{REQUEST_URI}" /> 
</rule>