URL重定向web.config

时间:2017-07-27 10:57:17

标签: iis url-rewriting web-config url-redirection

我有以下网址

https://www.abcsite.com/?data=w35VTqIaVXWfi4GmESj8EGCG1cdF2aT%2BUF3D?utm_source=external%20system&utm_campaign=external%20system&utm_medium=EX.com&utm_content=MMB

哪有额外的?在末尾。我想删除并替换为"&"

我正在使用以下规则,但它无效。你能回顾一下这个并告诉我我做错了什么。

socket.h

感谢。

1 个答案:

答案 0 :(得分:1)

你的规则应该是这样的:

<rule name="fixdata" stopProcessing="true">
    <match url=".*" />
    <conditions>
        <add input="{QUERY_STRING}" pattern="(.*)\?utm_source(.*)$" />
    </conditions>
    <action type="Redirect" url="{R:0}?{C:1}&amp;utm_source{C:2}" appendQueryString="False" />
</rule>

您的规则无效,因为<match url=包含没有查询字符串的路径。您需要创建其他条件以将查询字符串与正则表达式模式匹配