URL重写重定向不太有效

时间:2012-05-17 21:15:40

标签: regex iis-7 url-rewriting url-redirection

我在WEB.CONFIG中使用URL重写规则。我在IIS中设置了站点。只是一个非常快速和简单的网站。

这就是我的Web.config的样子。

<rule name="CTVNews Articles" stopProcessing="true">
      <match url="(.*?)CTVNews(/?)(.*)" />
      <action type="Redirect" url="http://www.ctvnews.ca{R:2}{R:3}" appendQueryString="true" redirectType="Permanent" />
    </rule>

这是我想要重定向的default.aspx页面中的条目

a href =“http://www.ctv.ca/CTVNews/TopStories/20110106/domtar-investment-110106”&gt;点击此处重定向

所以,没什么特别的。但重定向不起作用。我认为我在web.config中的条目是正确的。

我是否需要为此设置主机文件?

0 个答案:

没有答案