Sitecore::无法实现png、jpg格式的重定向请求

本文关键字:格式 请求 jpg 重定向 png 实现 Sitecore | 更新日期: 2023-09-27 18:29:36

我有以下重定向要求:

发件人URL:http://localsource.com/images/products/example.jpg

至URL:localsource.com/some-landing page

我从一些专家那里听说,我们需要更新web.config文件,添加jpg、png、.air等扩展名来解决上述类型的重定向请求。我在这里很困惑,有人能帮我提供确切的答案吗?

Sitecore::无法实现png、jpg格式的重定向请求

安装URL重写并将以下代码添加到web.config文件中:

<rewrite>
  <rules>
    <rule name="Rewrite jpg">
      <match url="^images/products/example.jpg" />
      <action type="Rewrite" url="some-landing page" />
    </rule>
  </rules>
</rewrite>

有关详细信息,请参阅URL重写模块文章的"创建重写规则"。