研究了URL重写并查看了许多帖子之后,我仍然对为什么我的URL重写不起作用感到困惑。我正在尝试从路径中删除/carrot/
。
例如:https://my.server.com/carrot/mobile/path
应变为:https://my.server.com/mobile/path
我的URL重写规则非常简单,如下所示:
<rule name="RemoveCarrotFromPath">
<match url=".*carrot(.*)" />
<action type="Rewrite" url="{R:1}" />
</rule>
感谢所有帮助。
编辑,如果这是各种规则冲突的问题,则可以在下面找到所有使用的规则:
<rewrite>
<rules>
<rule name="redirectPayment" stopProcessing="true">
<match url="/payment" />
<action type="Redirect" url="https://my.app.com/carrot/Payment" />
</rule>
<rule name="redirectMembership" stopProcessing="true">
<match url="/membership" />
<action type="Redirect" url="https://my.app.com/carrot/Membership" />
</rule>
<rule name="RemoveCarrotFromPath">
<match url=".*carrot(.*)" />
<action type="Rewrite" url="{R:1}" />
</rule>
</rules>
</rewrite>
答案 0 :(得分:0)
我的问题的解决方案是使用Redirect
代替Rewrite
,如下所示:
<rule name="RemoveCarrotFromPath">
<match url=".*carrot(.*)" />
<action type="Redirect" url="{R:1}" />
</rule>