外链转内链对一个网站的SEO很有帮助,说的最多的就是过多的外链会降低你的网站权重,如果你非常在意的话,可以通过插件国人开发的插件anylink,来实现,我其实一直也不在意这个事情,当我们发现权重流失时,可以试试下面的方法,免去插件的麻烦。当然代码对于首页的友情链接,文章页内自己的文章的链接是不会起作用的。
/*
*/
add_filter('the_content','web589_the_content_nofollow',999);
function web589_the_content_nofollow($content){
preg_match_all('/href="(http.*?)"/',$content,$matches);
if($matches){
foreach($matches[1] as $val){
if( strpos($val,home_url())===false )
$content=str_replace("href="$val"","rel="nofollow" href="" . get_bloginfo('wpurl'). "/go?url=" .base64_encode($val). """,$content);
}
}
return $content;
}
2、在网站根目录下建立go文件夹
注意是网站的根目录,不是主题的根目录。建立index.PHP文件,复制以下代码
$url = $_GET['url'];
$a = '';
if( $a==$url ) {
$b = "http://www.511yj.com/";
// echo 'true';
} else {
$b = $url;
$b = base64_decode($b);
}
?>
<Meta charset=utf-8 />
<Meta name="robots" content="nofollow">
<Meta http-equiv="refresh" content="0.1;url=PHP echo $b; ?>">
>
把 $b = "http://www.511yj.com/";换成你的网址。以上技术来自网络,已经测试没有问题--).
以上代码增加了跳转美化效果,代码中已经用 base64 将源链接加密,并且加上了 nofollow,但恐怕蜘蛛还是能爬行,在 Robot s 禁止所有蜘蛛爬行 /go?url 目录!
Disallow: /go/
Disallow: /go?url
建议你阅读:
1、深入解读robots优化wordpress
2、优化Robots.txt提升你的wordpress收录