1

我在 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">点击这里重定向

所以,没什么好看的。但是重定向不起作用。而且我认为我在 web.config 中的输入是正确的。

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

4

0 回答 0