IIS 7.5 URL重写旧URL到新URL的重定向规则

时间:2011-04-16 23:37:43

标签: asp.net regex asp.net-mvc-3 url-rewriting iis-7.5

我正在尝试映射这个旧的webform网址

http://www.mysite.com/Listing.aspx?mlsnum=T5017910

到这个新的MVC URL:

http://www.mysite.com/listing?id=T5017910

不知怎的,我无法让它发挥作用。我的规则如下:

<rule name="My Listing Redirect Rule" stopProcessing="true">
    <match url="^Listing.aspx?mlsnum=([0-9a-z]+)" ignoreCase="true" />
    <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    </conditions>
    <action type="Redirect" url="listing?id={R:1}" redirectType="Permanent" />
</rule>

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

您的<match url=...>需要逃避?字符,请尝试改为:

<match url="Listing.aspx\?mlsnum=([0-9a-z]+)" ignoreCase="true"/>