Google无法将地址从旧站点更改为新站点

问题描述 投票:0回答:1

我已将安装程序从旧站点重定向到新站点,但是当我尝试更改地址时Google给出了错误消息。

这是在我的.htaccess中

Redirect 301 https://www.thebackcountrytrail.com https://highaltitudebrands.com
Redirect 301 http://www.thebackcountrytrail.com https://highaltitudebrands.com
Redirect 301 http://thebackcountrytrail.com https://highaltitudebrands.com
Redirect 301 https://thebackcountrytrail.com https://highaltitudebrands.com

这是我得到的错误:

enter image description here

任何帮助将不胜感激。

wordpress redirect http-status-code-301 http-redirect google-search-console
1个回答
0
投票

请在.htaccess中添加以下代码

RewriteEngine on
RewriteCond %{HTTP_HOST} ^olddomain.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.olddomain.com [NC]
RewriteRule ^(.*)$ https://newdomain.com/$1 [L,R=301,NC]

或者您也可以使用301 redirect插件。

© www.soinside.com 2019 - 2024. All rights reserved.