我已将我的wordpress博客从https://blog.example.com迁移到https://www.example.com/blog,一切正常。 现在我主要担心的是,谷歌已将以前的网址编入索引,以便我如何将https://blog.example.com/post-name重定向到https://www.example.com/blog/post-name。
答案 0 :(得分:0)
重定向谷歌使用htaccess存档的旧ULR,谷歌将知道您进行了更改。
# This will red`irect a subdomain to the main domain
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yoursubdomain\.yourdomain\.com$ [NC]
RewriteRule ^(.*) http://www.yourdomain.com/$1 [L,R=301]