给WordPress网站添加外链go跳转效果避免权重丢失

有时候我们网站为了避免权重丢失以及恶意网站,可以使用go.php?url=的方式进行跳转外链,这确实是一个不错的功能。所以有些朋友就想实现这个功能,对于懂后端代码的这很简单,但是对于小白就是有点困难。其实实现跳转功能也还蛮简单的,这里简单分享下这个部署方法。

给WordPress网站添加外链go跳转效果避免权重丢失 - 红客科技

给WordPress网站添加外链go跳转效果避免权重丢失_第1张图片

方法一:插件实现

有些插件也能实现这个外链跳转

1.Simple URLs插件

设置简单,只需要要后台设置好后缀和目标页面即可

2.Link-Hopper插件

跳转链接的基础地址可以随意设置

方法二:比较推荐

网站根目录创建go.php,写入:

 384 ||  
    strpos($_SERVER['REQUEST_URI'], "eval(") ||  
    strpos($_SERVER['REQUEST_URI'], "base64")) {  
        @header("HTTP/1.1 414 Request-URI Too Long");  
        @header("Status: 414 Request-URI Too Long");  
        @header("Connection: Close");  
        @exit;  
}  
//通过QUERY_STRING取得完整的传入数据,然后取得url=之后的所有值,兼容性更好  
$t_url = preg_replace('/^url=(.*)$/i','$1',$_SERVER["QUERY_STRING"]);  
  
//此处可以自定义一些特别的外链,不需要可以删除以下5行  
if($t_url=="红客科技" ) {  
   $t_url="//hongke123.com";  
} elseif($t_url=="baidu") {  
   $t_url="https://www.baidu.com/";  
}  
  
//数据处理  
if(!empty($t_url)) {  
    //判断取值是否加密  
    if ($t_url == base64_encode(base64_decode($t_url))) {  
        $t_url =  base64_decode($t_url);  
    }  
    //对取值进行网址校验和判断  
    preg_match('/^(http|https|thunder|qqdl|ed2k|Flashget|qbrowser):\/\//i',$t_url,$matches);  
    if($matches){  
        $url=$t_url;  
        $title='页面加载中,请稍候...';  
    } else {  
        preg_match('/\./i',$t_url,$matche);  
        if($matche){  
            $url='http://'.$t_url;  
            $title='页面加载中,请稍候...';  
        } else {  
            $url = 'http://'.$_SERVER['HTTP_HOST'];  
            $title='参数错误,正在返回首页...';  
        }  
    }  
} else {  
    $title = '参数缺失,正在返回首页...';  
    $url = 'http://'.$_SERVER['HTTP_HOST'];  
}  
?>  
  
  
  
  
  
  
<?php echo $title;?>  
  
  
  
页面加载中,请稍候...

找到网站主题模板的functions.php文件添加:

function link_jump( $content ) {
    // Get the host of the current site
    $host = parse_url( home_url(), PHP_URL_HOST );

    // Find all links in the content
    preg_match_all( '/]+href=[\"\']([^\"\']+)[\"\'][^>]*>(.*?)<\/a>/i', $content, $matches, PREG_SET_ORDER );

    // Iterate over each link
    foreach ( $matches as $match ) {
        $url = $match[1];
        $text = $match[2];

        // Check if the link is external
        if ( strpos( $url, 'http' ) === 0 && strpos( $url, $host ) === false ) {
            // Add nofollow and target="_blank" attributes, and convert to a redirect link
            $redirect_link = home_url() . '/go.php?' . base64_encode( $url );
            $new_link = sprintf( '%s', $redirect_link, $text );
            $content = str_replace( $match[0], $new_link, $content );
        }
    }

    return $content;
}
add_filter( 'the_content', 'link_jump', 999 );

此代码与网络原始代码相比,添加了以下特性:

使用 $host 变量动态获得当前站点的主机名,这意味着您不再需要在代码中硬编码站点URL。

我们从正则表达式中删除了不必要的定位符,使其更加简洁。

在循环中,我们添加了将外部链接转换为重定向站内链接的步骤。

改善了 $matches 数组中元素的名称,使其更具可读性。

这样做可以提高您的代码质量,并减少代码的冗余。

网络分享的functions.php文件添加原代码:

/*文章外链跳转伪静态版 
此为新窗口打开,如不想要直接删除下面的target='-blank'
*/  
add_filter('the_content','link_jump',999);  
function link_jump($content){  
    preg_match_all('//',$content,$matches);  
    if($matches){  
        foreach($matches[2] as $val){  
            if(strpos($val,'://')!==false && strpos($val,home_url())===false && !preg_match('/\.(jpg|jepg|png|ico|bmp|gif|tiff)/i',$val) && !preg_match('/(ed2k|thunder|Flashget|flashget|qqdl):\/\//i',$val)){  
            $content=str_replace("href=\"$val\"", "href=\"".home_url()."/go.php?".base64_encode($val)."\" rel=\"nofollow\" target='_blank' ",$content);  
            }  
        }  
    }  
    return $content;  
}

外链跳转伪静态设置

rewrite ^/go/(.*)$ /go.php?url=$1 last;

#注意go.php的实际路径,默认为网站根目录

以上代码增加了跳转美化效果,代码中已经用 base64 将源链接加密,并且加上了 nofollow,但恐怕蜘蛛还是能爬行,在 Robot s 禁止所有蜘蛛爬行 /go?url 目录。

Disallow: /go/  
Disallow: /go?url

以上就是给WordPress网站添加外链go跳转效果的全部方法,需要的朋友可以拿去试试。
现在越来越多的博客采用了外链跳转页面,赶快设置看看效果. 

你可能感兴趣的:(golang,php,数学建模)