欢迎访问 舍力博客(www.shuyong.net)
<?php function com_url($text) { if(strstr($text,$_SERVER['HTTP_HOST'])){return $text; }else{return str_replace('<a href="', '<a href=', '<a rel="nofollow" href=', $text);} } ?>
第二步、找到模板module.php,将其中的是<?php echo $comment['poster']; ?>替换为<?php echo com_url($comment['poster']); ?>一共有2处需要替换。
<?php function com_url($text) { if(strstr($text,$_SERVER['HTTP_HOST'])){return $text; }else{return str_replace('<a href="', '<a href="'.BLOG_URL.'go/?url=', $text);} } ?>
留言/评论:◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。