程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP過濾外部鏈接及外部圖片 添加rel="nofollow"屬性

PHP過濾外部鏈接及外部圖片 添加rel="nofollow"屬性

編輯:關於PHP編程

原來站內很多文章都是摘錄的外部文章,文章裡很多鏈接要麼是時間久了失效了,要麼就是一些測試的網址,如:http://localhost/ 之類的,鏈接多了的話,就形成站內很多死鏈接,這對SEO優化是很不利的。那麼就需要對站點內的內容進行過濾,將不是內部鏈接的鏈接加上 rel="nofollow"屬性。

網上找到了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; }   調用的時候很好調用,如下是調用演示   $a['content'] = content_nofollow($a['content'],$domain);    //將文章內容裡的鏈接增加nofllow屬性   注意!過濾的域名需要是不帶“/”的,如http://www.ledaokj.com   這樣才可以很好的過濾。   原文鏈接:增加對站點內容外部鏈接的過濾

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved