IIS URL重写 - 将子文件夹重定向到页面

时间:2016-01-26 16:31:58

标签: asp.net url-rewriting iis-7 iis-8 url-rewrite-module

我想根据以下规则重定向我网站上的所有流量

https://www.test.com/abc - > https://www.test.com/test1.aspx?c=abc
https://www.test.com/def - > https://www.test.com/test1.aspx?c=def

子文件夹需要作为查询字符串传递

我试过这个并且它似乎不起作用。

<rule name="Reditect1" stopProcessing="true">
                    <match url="^(.*)test.com/(.*)" />
                    <conditions>
                        <add input="{R:2}" pattern="^[a-zA-Z0-9_]*$" />
                    </conditions>
                    <action type="Redirect" url="/test1.aspx?c={C:0}" appendQueryString="true" />
                </rule>

1 个答案:

答案 0 :(得分:0)

因此,经过更多的研究和反复试验,我能够弄明白。以下是我现在设置的方法。

 <rule name="Redirect1" stopProcessing="true">
        <match url="^(.*)$" />
            <conditions>
                <add input="{R:0}" pattern="^(?!\s*$).+$"/>
                <add input="{R:0}" pattern="^[a-zA-Z0-9_]*$" />
            </conditions>
        <action type="Redirect" url="/test1.aspx?c={C:0}" appendQueryString="true" />
  </rule>

注意
该规则是在站点级别设置的,而不是IIS中的服务器级别。因此,模式匹配忽略了域名。

<强> ^(.*)test.com/(.*) - tried matching a test.com after the actual qualified domain name. So www.test.com/test.com/abc would satisfy the condition and not www.test.com/abc

<强>解释

规则匹配任何进入的网址 - 模式(。*)

第一个条件确保遵循限定域名的任何内容至少有一个非空格字符

第二个条件确保被解析的部件中没有特殊字符。这是我的要求。