WordPress纯代码外链跳转效果的实现

这个访问外链自动进行一个内部跳转的效果,部分主题是自带的,据说这样可以避免自己网站权重的流失,属于SEO范畴,目前可查询的本站权重都为零,没有可以再损失的,纯属美观和装X考虑..

步骤

新建 go.php 文档,添加以下PHP代码,并且上传到网站根目录。

<?php 
/**
 * Modify by 黑鸟博客.
 * Site: www.guihet.com
 * Date: 2018-10-09
 */
if(strlen($_SERVER['REQUEST_URI']) > 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=="guihet" ) {
   $t_url="https://guihet.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'];
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="noindex, nofollow" />
<noscript><meta http-equiv="refresh" content="1;url='<?php echo $url;?>';"></noscript>
<script>
function link_jump()
{
    //禁止其他网站使用我们的跳转页面
    var MyHOST = new RegExp("<?php echo $_SERVER['HTTP_HOST']; ?>");
    if (!MyHOST.test(document.referrer)) {
         location.href="http://" + MyHOST;
    }
    location.href="<?php echo $url;?>";
}
//延时1S跳转,可自行修改延时时间
setTimeout(link_jump, 1000);
//延时50S关闭跳转页面,用于文件下载后不会关闭跳转页的问题
setTimeout(function(){window.opener=null;window.close();}, 50000);
</script>
<title><?php echo $title;?></title>
<style type="text/css">
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)}}
</style>
</head>
<body>
<div class="loading">
  <div class="spinner-wrapper">
    <span class="spinner-text">页面加载中,请稍候...</span>
    <span class="spinner"></span>
  </div>
</div>
</body>
</html>

使用方法

该PHP文件的使用可以在添加外链的时候手动添加跳转,同时跳转样式可以自行修改。
可用的外链跳转形式为: {本站地址}/go.php?{外链地址} 或 {本站地址}/go.php?url={外链地址}
在文章添加外链的时候,只要按照以上格式添加即可
不演示没真相:
https://www.sina.com.cn/

博文中外链自动识别

在functions.php文件中加入以下代码,这样就可以自动进行外链替换,无需文章前半部分说明到的必须人肉手工方式替换了..

//给外部链接加上跳转  
add_filter('the_content','the_content_nofollow',999);  
function the_content_nofollow($content)  
{  
    preg_match_all('/<a(.*?)href="(.*?)"(.*?)>/',$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)){  
                $content=str_replace("href=\"$val\"", "href=\"".home_url()."/go/?url=$val\" ",$content);  
            }  
        }  
    }  
    return $content;  
}  
// 下载外链跳转
function links_nofollow($url) {
    if(strpos($url,'://')!==false && strpos($url,'guihet.com')===false && !preg_match('/(ed2k|thunder|Flashget|flashget|qqdl):\/\//i',$url)) {
	$url = str_replace($url, home_url()."/go/".base64_encode($url),$url);
	     }
    return $url;
}

要查看效果点击本站之前文章内的任意一个外站的链接即可..
或者试试这个 https://www.sina.com.cn/

《Wordpress纯代码外链跳转效果的实现》

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

  1. 趣知识 趣知识 说道:

    可惜我那带评论的历史博客,关闭鸟

  2. Action 说道:

    对于“网址收藏"、"网站导航"的非常实用了。

    1. 鬼手六 说道:

      恩,对他们来说这个样子搞很必需的..

  3. 夏天烤洋芋 说道:

    :mrgreen: 感觉体验太差。

    1. 鬼手六 说道:

      不管啦,他们大佬网站都这么搞,我也要玩..

  4. WoAiWu福利吧 说道:

    不错的方法
    我现在就在使用

    1. 鬼手六 说道:

      :biggrin: 看起来比较有逼格..

  5. 嗨趣儿 说道:

    我这有个比较漂亮的:https://www.hiquer.com/339.html
    自己感觉不错,评论如果违规请删除。