Sitecore 不尊重 II7 URL 重写模块

发布于 2024-12-12 06:58:53 字数 438 浏览 0 评论 0原文

我正在尝试让 IIS7 URL 重写模块与 Sitecore 一起使用。我导入了一些规则并成功测试了它们,但是当我尝试访问某个 URL 时,我设置了一个重定向,而是得到了 Sitecore 404 页面。因此,就好像 Sitecore 在 URL 重写模块有机会拦截页面请求之前就拦截了页面请求。

示例规则:

<rule name="Imported Rule 1">
                <match url="/pastsub(.*)" ignoreCase="false" />
                <action type="Redirect" url="http://www.domain.net" redirectType="Found" />
</rule>

关于如何解决此问题有什么想法吗?

I am trying to get the IIS7 URL Rewrite module working with Sitecore. I imported some rules and successfully tested them, but when I attempt to go to a URL I've setup a redirect for I get the Sitecore 404 page instead. So it's as if Sitecore is intercepting the page request before the URL Rewrite module has a chance to.

Sample rule:

<rule name="Imported Rule 1">
                <match url="/pastsub(.*)" ignoreCase="false" />
                <action type="Redirect" url="http://www.domain.net" redirectType="Found" />
</rule>

Any ideas on how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬色的秋千 2024-12-19 06:58:53

stopProcessing="true" 添加到规则可能会解决您的问题:

<rule name="Imported Rule 1" stopProcessing="true">
    <match url="/pastsub(.*)" ignoreCase="false" />
    <action type="Redirect" url="http://www.domain.net" redirectType="Found" />
</rule>

Adding stopProcessing="true" to the rule will probably solve your problem:

<rule name="Imported Rule 1" stopProcessing="true">
    <match url="/pastsub(.*)" ignoreCase="false" />
    <action type="Redirect" url="http://www.domain.net" redirectType="Found" />
</rule>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文