1
<rule name="WomensSilverBangles" patternSyntax="ExactMatch">
    <match url="/Bangles/Silver/Womens.aspx" />
    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
    <action type="Rewrite" url="Collections/jewellery.aspx?AXSW_CategoryID=Bangles&amp;AXSWFinenessId=Silver&amp;AXSW_GenderID=Womens&amp;MenuName=Jewellery&amp;SiteMapNode=Silver Bangles&amp;depth=2" />
</rule>

这可以用通配符写吗?

可以看到,匹配 URL 中的三个变量用于重写后的 URL 字符串。

4

1 回答 1

1

我知道这个问题发布已经有一段时间了,但是这里有一篇关于重写的优秀文章基于此,您可以尝试尝试类似这样的东西(未测试):

    <rule name="3levelcatchall" patternSyntax="Wildcard">
      <match url="/*/*/*.aspx"/>
      <action type="Rewrite" url="Collections/jewellery.aspx?AXSW_CategoryID={R:1}&amp;AXSWFinenessId={R:2}&amp;AXSW_GenderID={R:3}&amp;MenuName=Jewellery&amp;SiteMapNode={R:2} {R:1}&amp;depth=2" appendQueryString="false"/>
    </rule>
于 2014-03-28T15:10:15.840 回答