您好我在WebMatrix工作,我收到错误:
The page contains multiple canonical formats.
当我在网站上运行搜索引擎优化报告时发生了这种情况。我收到了www.sitename.com和www.sitename.com/Default.aspx的错误。
我知道我需要进行301重定向,但如果可能的话,这是如何在WebMatrix中完成的?
答案 0 :(得分:0)
Response.RedirectPermanent(location)
或
Response.StatusCode = 301;
Response.RedirectLocation = location;