欢迎光临
我们一直在努力

Discuz! 帖子外链自动添加nofollow的方法

建站超值云服务器,限时71元/月

 ,让系统自动把外链都加上nofollow属性,修改方法如下:, ,1. 打开目录source/function/function_discuzcode.php文件,查找parseurl函数,对照以下代码进行修改:,

function parseurl($url, $text, $scheme) {
        global $_G;
        if(!$url && preg_match("/((https?|ftp|gopher|news|telnet|rtsp|mms|callto|bctp|thunder|qqdl|synacast){1}:\/\/|www\.)[^\[\"']+/i", trim($text), $matches)) {
                $url = $matches[0];
                $length = 65;
                if(strlen($url) > $length) {
                        $text = substr($url, 0, intval($length * 0.5)).' ... '.substr($url, - intval($length * 0.3));
                }
        $url = nofollow($url);
                return '<a href="'.(substr(strtolower($url),%200,%204)%20==%20'www.'%20?%20'http://'.$url%20:%20$url).'" target="_blank">'.$text.'</a>';
        } else {
                $url = substr($url, 1);
                if(substr(strtolower($url), 0, 4) == 'www.') {
                        $url = 'http://'.$url;
                }
                $url = !$scheme ? $_G['siteurl'].$url : $url;
                return '<a href="'.nofollow($url).'" target="_blank">'.$text.'</a>';
        }
}

,复制代码, ,2. 在parseurl函数后面新增nofollow函数,代码如下:,

function nofollow($url = '')
{
    $temp = array();

    if( ! empty($url))
    {
        $temp = parse_url($url);

        if(isset($temp['host']) && $temp['host'] != $_SERVER['HTTP_HOST'])
        {
            $url .= '" rel="nofollow"';
        }
    }

    unset($temp);
    return $url;
}

,  让系统自动把外链都加上nofollow属性,修改方法如下:   1. 打开目录source/function/function_discuzcode.php文件,查找parseurl函数,对照以下代码进行修改:

function parseurl($url, $text, $scheme) {
        global $_G;
        if(!$url && preg_match("/((https?|ftp|gopher|news|telnet|rtsp|mms|callto|bctp|thunder|qqdl|synacast){1}:\/\/|www\.)[^\[\"']+/i", trim($text), $matches)) {
                $url = $matches[0];
                $length = 65;
                if(strlen($url) > $length) {
                        $text = substr($url, 0, intval($length * 0.5)).' ... '.substr($url, - intval($length * 0.3));
                }
        $url = nofollow($url);
                return '<a href="'.(substr(strtolower($url),%200,%204)%20==%20'www.'%20?%20'http://'.$url%20:%20$url).'" target="_blank">'.$text.'</a>';
        } else {
                $url = substr($url, 1);
                if(substr(strtolower($url), 0, 4) == 'www.') {
                        $url = 'http://'.$url;
                }
                $url = !$scheme ? $_G['siteurl'].$url : $url;
                return '<a href="'.nofollow($url).'" target="_blank">'.$text.'</a>';
        }
}

复制代码   2. 在parseurl函数后面新增nofollow函数,代码如下:

function nofollow($url = '')
{
    $temp = array();

    if( ! empty($url))
    {
        $temp = parse_url($url);

        if(isset($temp['host']) && $temp['host'] != $_SERVER['HTTP_HOST'])
        {
            $url .= '" rel="nofollow"';
        }
    }

    unset($temp);
    return $url;
}


赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » Discuz! 帖子外链自动添加nofollow的方法
分享到: 更多 (0)