我正在使用URLRewrite模块尝试将首页以外的所有内容重定向到新域,以尝试保持路径完整。
我已经在web.config中尝试了以下方法,但未成功
<rewrite>
<rules>
<rule name="Redirect old-domain to new-domain" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www.olddomain.com/.+$" />
</conditions>
<action type="Redirect" url="https://www.newdomain.com/{R:0}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
任何人都可以告诉我哪里出了问题,我还需要否定将css和js这样的资产保留在哪里
谢谢
Minesh