鉴于此网址:
http://domain1.com/pdfs/file.pdf
如何重定向domain1
到domain2
使用该pdfs/*
模式?
我正在尝试重定向http://domain1.com/pdfs/file.pdf
到http://domain2.com/pdfs/file.pdf
我试过了:
<rule name="Publications" enabled="true" stopProcessing="true">
<match url="(.*)" ignoreCase="true" />
<conditions logicalGrouping="MatchAll">
<add input="{URL}" pattern="^pdfs/$" ignoreCase="true" />
</conditions>
<action type="Redirect" url="http://domain2.com/pdfs/{R:0}" />
</rule>
谢谢