Sitecore 不尊重 II7 URL 重写模块
我正在尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 stopProcessing="true" 添加到规则可能会解决您的问题:
Adding stopProcessing="true" to the rule will probably solve your problem: