我正在尝试为具有多个域的网站创建网址重写。例如,其中一个域是mydomain.com,如果用户将www.mydomain.com放入浏览器并且未指定页面,我想重写URL以调用www.mydomain.com/landingpage.aspx?cat=1&溶胶= 4。
如果用户调用其他任何内容,例如www.mydomain.com/somepage.aspx,则应忽略此规则。
我已在我们拥有的服务器2008 R2计算机上安装了URL Rewrite 2.0,并且已将此规则添加到web.config。
<rewrite>
<rules>
<rule name="mydomain.com" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^(www.)?mydomain.com" />
<add input="{PATH_INFO}" pattern="^$" negate="true" />
</conditions>
<action type="Rewrite" url="\landingpage.aspx?cat=1&sol=4" />
</rule>
</rules>
</rewrite>
我正在使用^ $的{PATH_INFO},这样如果除了对域的调用之外的任何事情发生这种情况,我认为应该忽略它。但它不起作用。
我在网站上使用.NET 4.0。
有人可以告诉我,我做错了吗?
答案 0 :(得分:2)
您正在寻找以下规则:
这将检查URL是否为空,即没有使用match url = ^ $指定页面 - 空字符串并重定向到特定页面。
<rule name="Redirect to specific page" enabled="true" stopProcessing="true">
<match url="^$" />
<conditions>
<add input="{HTTP_HOST}" pattern="^(www.)?mydomain.com$" />
</conditions>
<action type="Redirect" url="http://{HTTP_HOST}/landingpage.aspx?cat=1&sol=4" />
</rule>