这篇文章主要为大家详细介绍了PHP对站点内容外部链接过滤的实现方法,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
熟悉SEO的朋友都知道,对于网站外部链接失效的情况如果链接带有rel="nofollow"属性可以避免不必要的损失。本文就以实例形式演示了PHP实现对站点内容外部链接的过滤方法。具体如下:
本文借鉴了wordpress的过滤外部链接的函数,将其改一下即可使用。
具体代码如下:
代码如下:
//外部链接增加nofllow $content 内容 $domain 当前网站域名
function content_nofollow($content,$domain){
preg_match_all('/href="(.*?)"/',$content,$matches);
if($matches){
foreach($matches[1] as $val){
if( strpos($val,$domain)===false ) $content=str_replace('href="'.$val.'"', 'href="'.$val.'" rel="external nofollow" ',$content);
}
}
preg_match_all('/src="(.*?)"/',$content,$matches);
if($matches){
foreach($matches[1] as $val){
if( strpos($val,$domain)===false ) $content=str_replace('src="'.$val.'"', 'src="'.$val.'" rel="external nofollow" ',$content);
}
}
return $content;
}
PHP实现对站点内容外部链接的过滤方法
调用的时候很好调用,如下是调用演示
代码如下:
$a['content'] = content_nofollow($a['content'],$domain); //将文章内容里的链接增加nofllow属性
PHP实现对站点内容外部链接的过滤方法
注意!这里过滤的域名需要是不带“/”的,如https://www.q1010.com,这样才可以很好的过滤。
相信本文所述的方法对大家的PHP项目开发有一定的借鉴价值。
本文来自:http://www.q1010.com/173/17673-0.html
注:关于PHP对站点内容外部链接过滤的实现方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:外部链接
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。