SEO consequences of redirecting with META REFRESH

天涯浪子 提交于 2019-11-30 09:02:42

as i can not comment on the fact, if a 0sec meta refresh is treated as a 301 redirect, i would just go with the way google recommends. see http://www.google.com/support/webmasters/bin/answer.py?answer=139394

from http://www.oldsite.com/

<head>
...
<link rel="canonical" href="http://www.newsite.com/" />
...
</head>

from http://www.newsite.com/awesomepage.html

<head>
...
<link rel="canonical" href="http://www.newsite.com/awesomepage" />
...
</head>

and so on.

cross domain canonicals are basically treated like HTTP 301 for googlebot. whatever you do with the user (i.e.: meta refresh, or just leave him/her on the old page) is optional (as long as it is not missleading).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!