WordPress添加外链go跳转功能

 5424

网站内容中不免有一些外链,为了网站的权重不外流,也为了用户的安全提示,油门有必要对这些外链添加跳转提示功能,这篇文章给大家带来了如何为WordPress添加外链go跳转功能,希望能对大家有所帮助。


方法一:纯代码实现

首先,在自己的wordpress网站的根目录下新建一个go.php文件,在go.php里面输入以下代码

  1. <?php
  2. $t_url = preg_replace('/^url=(.*)$/i','$1',$_SERVER["QUERY_STRING"]);  
  3. if(!empty($t_url)) {  
  4.     preg_match('/(http|https):\/\//',$t_url,$matches);  
  5.     if($matches){  
  6.         $url=$t_url;  
  7.         $title='页面加载中,请稍候...';  
  8.     } else {  
  9.         preg_match('/\./i',$t_url,$matche);  
  10.         if($matche){  
  11.             $url='http://'.$t_url;  
  12.             $title='页面加载中,请稍候...';  
  13.         } else {  
  14.             $url='https://www.zztuku.com/';  
  15.             $title='参数错误,正在返回首页...';  
  16.         }  
  17.     }  
  18. } else {  
  19.     $title='参数缺失,正在返回首页...';  
  20.     $url='https://www.zztuku.com/';  
  21. }  
  22. ?>  
  23. <html>  
  24. <head>  
  25. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  26. <meta http-equiv="refresh" content="1;url='<?php echo $url;?>';">  
  27. <title><?php echo $title;?></title>  
  28. <style>  
  29. body{background:#000}.loading{-webkit-animation:fadein 2s;-moz-animation:fadein 2s;-o-animation:fadein 2s;animation:fadein 2s}@-moz-keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@-o-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes fadein{from{opacity:0}to{opacity:1}}.spinner-wrapper{position:absolute;top:0;left:0;z-index:300;height:100%;min-width:100%;min-height:100%;background:rgba(255,255,255,0.93)}.spinner-text{position:absolute;top:50%;left:50%;margin-left:-90px;margin-top: 2px;color:#BBB;letter-spacing:1px;font-weight:700;font-size:36px;font-family:Arial}.spinner{position:absolute;top:50%;left:50%;display:block;margin-left:-160px;width:1px;height:1px;border:25px solid rgba(100,100,100,0.2);-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;border-left-color:transparent;border-right-color:transparent;-webkit-animation:spin 1.5s infinite;-moz-animation:spin 1.5s infinite;animation:spin 1.5s infinite}@-webkit-keyframes spin{0%,100%{-webkit-transform:rotate(0deg) scale(1)}50%{-webkit-transform:rotate(720deg) scale(0.6)}}@-moz-keyframes spin{0%,100%{-moz-transform:rotate(0deg) scale(1)}50%{-moz-transform:rotate(720deg) scale(0.6)}}@-o-keyframes spin{0%,100%{-o-transform:rotate(0deg) scale(1)}50%{-o-transform:rotate(720deg) scale(0.6)}}@keyframes spin{0%,100%{transform:rotate(0deg) scale(1)}50%{transform:rotate(720deg) scale(0.6)}}  
  30. </style>  
  31. </head>  
  32. <body>  
  33. <div class="loading">  
  34.   <div class="spinner-wrapper">  
  35.     <span class="spinner-text">页面加载中,请稍候...</span>  
  36.     <span class="spinner"></span>  
  37.   </div>  
  38. </div>  
  39. </body>  
  40. </html>

使用方法:保存之后,则外链跳转形式为: {本站地址}/go.php?{外链地址}

使用:在添加外链的时候,只要给外链加上统一的跳转前缀:http://网站地址/go.php? 即可。

为了防止蜘蛛爬行,在 Robots 禁止所有蜘蛛爬行 /go?url 目录!

  1. Disallow: /go/  
  2. Disallow: /go?url


方法二:插件实现

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

1、Simple URLs插件:设置简单,只需要要后台设置好后缀和目标页面即可

2、Link-Hopper插件:跳转链接的基础地址可以随意设置

3、Pretty Link Lite插件:后台功能十分强大的,还有Pro版本,不过要money的。用它完全可以做一个短网址,像t.cn和bit.ly一样。

4、Affiliate Link Cloaking插件:推广链接转换工具,用来推广你的淘宝客等要隐藏的链接,可以使用它,附带统计功能。

5、WP No External Links插件:这个一款可以自动将博客内的外部链接转成内部链接,如 http://www.baidu.com,则显示为http://www.zztuku.com/goto/http://www.baidu.com,可以尝试使用这个插件防权重丢失的。

6、Go Codes插件:和前面的wordpress外链跳转链接插件设置一样简单,带统计功能。

注意:插件具体使用与否可以自己尝试,这里不做太多解释,也不对插件对错负责。


方法三:网友推荐

创建go.php,写入:

  1. <?php   
  2. if(strlen($_SERVER['REQUEST_URI']) > 384 ||  
  3.     strpos($_SERVER['REQUEST_URI'], "eval(") ||  
  4.     strpos($_SERVER['REQUEST_URI'], "base64")) {  
  5.         @header("HTTP/1.1 414 Request-URI Too Long");  
  6.         @header("Status: 414 Request-URI Too Long");  
  7.         @header("Connection: Close");  
  8.         @exit;  
  9. }  
  10. //通过QUERY_STRING取得完整的传入数据,然后取得url=之后的所有值,兼容性更好  
  11. $t_url = preg_replace('/^url=(.*)$/i','$1',$_SERVER["QUERY_STRING"]);  
  12.    
  13. //此处可以自定义一些特别的外链,不需要可以删除以下5行  
  14. if ($t_url=="zztuku" ) {  
  15.    $t_url="//www.zztuku.com";  
  16. } elseif($t_url=="baidu") {  
  17.    $t_url="https://www.baidu.com/";  
  18. }  
  19.    
  20. //数据处理  
  21. if(!empty($t_url)) {  
  22.     //判断取值是否加密  
  23.     if ($t_url == base64_encode(base64_decode($t_url))) {  
  24.         $t_url =  base64_decode($t_url);  
  25.     }  
  26.     //对取值进行网址校验和判断  
  27.     preg_match('/^(http|https|thunder|qqdl|ed2k|Flashget|qbrowser):\/\//i',$t_url,$matches);  
  28.     if($matches){  
  29.         $url=$t_url;  
  30.         $title='页面加载中,请稍候...';  
  31.     } else {  
  32.         preg_match('/\./i',$t_url,$matche);  
  33.         if($matche){  
  34.             $url='http://'.$t_url;  
  35.             $title='页面加载中,请稍候...';  
  36.         } else {  
  37.             $url = 'http://'.$_SERVER['HTTP_HOST'];  
  38.             $title='参数错误,正在返回首页...';  
  39.         }  
  40.     }  
  41. } else {  
  42.     $title = '参数缺失,正在返回首页...';  
  43.     $url = 'http://'.$_SERVER['HTTP_HOST'];  
  44. }  
  45. ?>  
  46. <html>  
  47. <head>  
  48. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  49. <meta name="robots" content="noindex, nofollow" />  
  50. <noscript><meta http-equiv="refresh" content="1;url='<?php echo $url;?>';"></noscript>  
  51. <script>  
  52. function link_jump()  
  53. {  
  54.     //禁止其他网站使用我们的跳转页面  
  55.     var MyHOST = new RegExp("<?php echo $_SERVER['HTTP_HOST']; ?>");  
  56.     if (!MyHOST.test(document.referrer)) {  
  57.          location.href="http://" + MyHOST;  
  58.     }  
  59.     location.href="<?php echo $url;?>";  
  60. }  
  61. //延时1S跳转,可自行修改延时时间  
  62. setTimeout(link_jump, 1000);  
  63. //延时50S关闭跳转页面,用于文件下载后不会关闭跳转页的问题  
  64. setTimeout(function(){window.opener=null;window.close();}, 50000);  
  65. </script>  
  66. <title><?php echo $title;?></title>  
  67. <style type="text/css">  
  68. body{background:#555}.loading{-webkit-animation:fadein 2s;-moz-animation:fadein 2s;-o-animation:fadein 2s;animation:fadein 2s}@-moz-keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@-o-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes fadein{from{opacity:0}to{opacity:1}}.spinner-wrapper{position:absolute;top:0;left:0;z-index:300;height:100%;min-width:100%;min-height:100%;background:rgba(255,255,255,0.93)}.spinner-text{position:absolute;top:45%;left:50%;margin-left:-100px;margin-top:2px;color:#000;letter-spacing:1px;font-size:20px;font-family:Arial}.spinner{position:absolute;top:45%;left:50%;display:block;margin-left:-160px;width:1px;height:1px;border:20px solid rgba(255,0,0,1);-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;border-left-color:transparent;border-right-color:transparent;-webkit-animation:spin 1.5s infinite;-moz-animation:spin 1.5s infinite;animation:spin 1.5s infinite}@-webkit-keyframes spin{0%,100%{-webkit-transform:rotate(0deg) scale(1)}50%{-webkit-transform:rotate(720deg) scale(0.6)}}@-moz-keyframes spin{0%,100%{-moz-transform:rotate(0deg) scale(1)}50%{-moz-transform:rotate(720deg) scale(0.6)}}@-o-keyframes spin{0%,100%{-o-transform:rotate(0deg) scale(1)}50%{-o-transform:rotate(720deg) scale(0.6)}}@keyframes spin{0%,100%{transform:rotate(0deg) scale(1)}50%{transform:rotate(720deg) scale(0.6)}}  
  69. </style>  
  70. </head>  
  71. <body>  
  72. <div class="loading">  
  73.   <div class="spinner-wrapper">  
  74.     <span class="spinner-text">页面加载中,请稍候...</span>  
  75.     <span class="spinner"></span>  
  76.   </div>  
  77. </div>  
  78. </body>  
  79. </html>

找到模板的functions.php文件添加:

  1. /*文章外链跳转伪静态版 
  2. 此为新窗口打开,如不想要直接删除下面的tar _ ank(安全问题不能打出来) 
  3. */  
  4. add_filter('the_content','link_jump',999);  
  5. function link_jump($content){  
  6.     preg_match_all('//',$content,$matches);  
  7.     if($matches){  
  8.         foreach($matches[2] as $val){  
  9.             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)){  
  10.             $content=str_replace("href=\"$val\"", "href=\"".home_url()."/go.php?".base64_encode($val)."\" rel=\"nofollow\" target='_blank' ",$content);  
  11.             }  
  12.         }  
  13.     }  
  14.     return $content;  
  15. }

Nginx伪静态设置(跳转方式为/go/):

  1. # 外链跳转伪静态 php版本  
  2. rewrite ^/go/(.*)$ /go.php?url=$1 last; #注意go.php的实际路径,默认为网站根目录

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

  1. Disallow: /go/  
  2. Disallow: /go?url


本文网址:https://www.zztuku.com/detail-13506.html
站长图库 - WordPress添加外链go跳转功能
申明:如有侵犯,请 联系我们 删除。

评论(0)条

您还没有登录,请 登录 后发表评论!

提示:请勿发布广告垃圾评论,否则封号处理!!

    编辑推荐

    Uniapp如何实现支付宝支付的功能