我已经将自己的域连接到我的博客,似乎我使用的免费博客平台在保存HTML模板之前删除了带有rel = canonical的任何链接标签,因此我决定像这样添加它:
if(window.location.href.indexOf("vahid01.blogfa")) {
var link = document.createElement('link');
link.rel = 'canonical';
link.href = 'http://zanganli.ir/'+window.location.href.replace(/^(?:\/\/|[^\/]+)*\//, "");
document.head.appendChild(link);
}
Google足够聪明来理解这一点吗?