如何在WebMatrix中进行301重定向?

时间:2011-03-18 17:06:08

标签: asp.net seo webmatrix

您好我在WebMatrix工作,我收到错误:

  

The page contains multiple canonical formats.

当我在网站上运行搜索引擎优化报告时发生了这种情况。我收到了www.sitename.com和www.sitename.com/Default.aspx的错误。

我知道我需要进行301重定向,但如果可能的话,这是如何在WebMatrix中完成的?

1 个答案:

答案 0 :(得分:0)

Response.RedirectPermanent(location)

Response.StatusCode = 301;
Response.RedirectLocation = location;