我正在尝试映射这个旧的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>
感谢任何帮助。
答案 0 :(得分:0)
您的<match url=...>
需要逃避?
字符,请尝试改为:
<match url="Listing.aspx\?mlsnum=([0-9a-z]+)" ignoreCase="true"/>