大众 301 重定向

发布于 2024-09-28 03:22:38 字数 277 浏览 2 评论 0原文

你好 -

我有一个网站(几年前建立),它在大多数页面上使用 .htm 扩展名。

我想切换到 Wordpress CMS 并使用“页面上的 html”插件来重新创建整个网站,但是,当然,我最终会在所有页面上都有 html 扩展名,并失去所有搜索引擎原始 .htm 页面的位置,其中许多页面在 SERP 中具有首页位置。

告诉机器人所有以前使用 .htm 扩展名的页面现在都是 .html 的大规模 301 重定向的正确语法是什么?

预先感谢您的任何帮助!

J。

HI -

I have a site (built years ago) which uses .htm extension on most pages.

I'd like to switch to a Wordpress CMS and use the "html on pages" plugin to re-create the whole site, but then, of course, I would end up with html extensions on all my pages and lose all my search engine placement for the original .htm pages, many of which have first page placement in the SERPs.

What is the correct syntax for a mass 301 redirect that tells the bots that all pages which formerly used .htm extensions are now .html?

Thanks in advance for any help!

J.

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

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

发布评论

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

评论(1

微凉徒眸意 2024-10-05 03:22:38

您使用什么网络服务器?

在 Apache 上,您可能会说:(

RedirectMatch permanent ^(.*)\.htm$ /$1.html

旁白:这不仅仅是 SEO!通过保持旧链接处于活动状态并重定向到新链接,您可以保持传入流量并避免使用 404 来烦扰用户。)

What web server are you using?

On Apache you might say:

RedirectMatch permanent ^(.*)\.htm$ /$1.html

(Aside: it's not just SEO! By keeping your old links alive and redirecting to the new ones, you keep incoming traffic and avoid annoying users with 404s.)

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