现在我想让我的网站重定向到特定页面,当任何正文尝试打开其中的任何页面我在web.config中使用此代码
<system.webServer>
<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true"> <match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^.+$" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://mydomain/image.jpg" />
</rule>
</rules>
但是当我试图打开网站时,我没有重定向到我想要的页面但我在浏览器中收到了消息&#34;重定向循环&#34; ,所以任何机构都知道原因以及如何解决这个问题并提前感谢