尝试以下规则并确保文件夹路径确实存在于新域中。
<rule name="Redirect Specific Folder" stopProcessing="true">
<match url="^oldsubfolder/(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^oldhostname$" />
</conditions>
<action type="Redirect" url="https://newhostname/{R:1}" redirectType="Permanent" />
</rule>
如您所见,它将使用测试作为 {R:1}。因此,您的新网址将是 https://newhostname/test