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

发布于 2024-10-24 03:10:50 字数 245 浏览 1 评论 0原文

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

页面包含多个 规范格式。

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

我知道我需要进行 301 重定向,但如果可能的话,如何在 WebMatrix 内部完成此操作?

Hi I am working in WebMatrix and I am getting the error:

The page contains multiple
canonical formats.

This happened when I ran an SEO Report on the site. I am getting the error with www.sitename.com and www.sitename.com/Default.aspx.

I know that I need to do a 301 redirect, but if possible how is this done inside of WebMatrix?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悍妇囚夫 2024-10-31 03:10:50
Response.RedirectPermanent(location)

或者

Response.StatusCode = 301;
Response.RedirectLocation = location;
Response.RedirectPermanent(location)

or

Response.StatusCode = 301;
Response.RedirectLocation = location;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文