本文最后更新于2022年5月23日,已超过 1 年没有更新,如果文章内容失效,请 反馈 给我们,谢谢!
首先我承认我是一个菜鸟超级大菜鸟,之前在很多博客网站看到外链转内链的方法,但是自己实现起来就问题多多可以说没有一点改变,不是网页打开空白了就是根本没变化,当然也用过anylink等插件,也去很多博客群咨询都无济于事,今天闲来无事干脆慢慢研究总算让我东拼西凑弄出来了wordpress非插件实现文章内容页的外链转内链和评论页的外链转内链的共存方式。
为什么要把外链转换成内链呢网上各执一词,而我单单是因为在某个博客中看到的链接样式非常好看,外部连接打开以后会有一个中间页面动态的很漂亮,很直观的体现了这不是本站的链接。
以上纯属瞎扯蛋入主题…….
首先来看一下评论页面的链接样式
当打开给我评论或者留言者的网站时网址是本站地址+中间页+评论者的网址。
其次再来看看文章内页的样式
通过比较发现两者唯一的区别就在于一个是go.php?一个是index.php?也就是link?想省事就用一个即可,评论+文章跳转的中间页共用一个模版。有些人还不用中间页呢,直接就是跳转。
最后看下中间页的样子(BY-此中间页转自张戈博客)
大神们完全可以自己做一个出来,对于我这样的小虾米只能东边捡一个西边偷一个了,唉~~喂!喂!别打脸,别打脸。
下面就是教程啦
本章共两点:
第一点实现文章页内的跳转也是自己编辑文章的时候如果出现了超链接在前台会以跳转的方式访问;
第二点实现评论页内的跳转也就是评论者填写网站发布评论的时候他的网站将以内链跳转的方式访问。
详见本站森林之家文章页下载链接和留言板页面。
第一点实现文章页内的跳转也是自己编辑文章的时候如果出现了超链接在前台会以跳转的方式访问;
第二点实现评论页内的跳转也就是评论者填写网站发布评论的时候他的网站将以内链跳转的方式访问。
详见本站森林之家文章页下载链接和留言板页面。
先来说说第一点:实现文章页内的跳转
第一步在主题目录打开“functions.php”随便找个空位置在“?>”前面插入以下代码:
add_filter('the_content','web589_the_content_nofollow',999); function web589_the_content_nofollow($content){ preg_match_all('/href="(http.*?)"/',$content,$matches); if($matches){ foreach($matches[1] as $val){ if( strpos($val,home_url())===false ) $content=str_replace("href=\"$val\"", "rel=\"nofollow\" href=\"" . get_bloginfo('wpurl'). "/link?url=" .base64_encode($val). "\"",$content); } } return $content; }
然后在网站根目录中建立一个“link”文件夹、在“link”文件夹中创建一个index.php文件,index.php文件中复制以下代码:
<?php $url = $_GET['url']; $a = ''; if( $a==$url ) { $b = "https://www.xxx.cn/"; // echo 'true'; } else { $b = $url; $b = base64_decode($b); } //Template Name:链接跳转(有过度) ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="refresh" content="3;url=<?php echo $b; ?>"> <title>正在跳转.....</title> <style> 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)}} </style> </head> <body> <div class="loading"> <div class="spinner-wrapper"> <span class="spinner-text">页面加载中,请稍候...</span> <span class="spinner"></span> </div> </div> </body> </html>
这个代码是在张戈博客博客中看到的。但是我按照他的操作对我不起作用可能是因为我才书学浅吧,于是我把这个能用的分离出来在“functions.php”文件中加入我在另一个博客中扒出来的代码。上面的代码可以更改“content”的数值也就是打开要多少秒默认是三秒,也可以更改显示的字什么的自己看着办吧。
好了言归正传上面的代码复制好了以后就上传到“link”文件吧,试试看效果出来了没?很简单吧,但对我来说怎么就辣么难哩。
好了言归正传上面的代码复制好了以后就上传到“link”文件吧,试试看效果出来了没?很简单吧,但对我来说怎么就辣么难哩。
好了现在文章页的外链可以转换了但是会评论中还有,刀不快杀不干净么,不要紧往下看。
再来说说第二步:在评论中实现跳转
首先复制以下代码到主题目录“functions.php”中,与第一步一样。
//评论链接url跳转 add_filter('get_comment_author_link', 'add_redirect_comment_link', 5); add_filter('comment_text', 'add_redirect_comment_link', 99); function add_redirect_comment_link($text = ''){ $text=str_replace('href="', 'target="_blank" href="'.get_option('home').'/link/go.php?url=', $text ); $text=str_replace("href='", "target='_blank'href='".get_option('home')."/link/go.php?url=", $text ); return $text; } add_action('init', 'redirect_comment_link'); function redirect_comment_link(){ $redirect = $_GET['r']; if($redirect){ if(strpos($_SERVER['HTTP_REFERER'],get_option('home')) !== false){ header("Location: $redirect"); exit; } else { header("Location: https://www.xxx.cn/"); exit; } } }
然后在网站根目录“link”文件夹中创建一个“go.php”文件,把之前的创建的“index.php”文件中的代码复制到“go.php”中即可。
PS:其实这样的是多余的,可以直接在这两行代码中改一下
$text=str_replace('href="', 'target="_blank" href="'.get_option('home').'/link/go.php?url=', $text ); $text=str_replace("href='", "target='_blank'href='".get_option('home')."/link/go.php?url=", $text );
改成
$text=str_replace('href="', 'target="_blank" href="'.get_option('home').'/index/go.php?url=', $text ); $text=str_replace("href='", "target='_blank'href='".get_option('home')."/link/index.php?url=", $text );
当然以上的工作就算结束了,至于我为什么要这么麻烦的弄两个跳转的中间页呢,这是我自己的原因了,哪天还可以把文章页和留言页的跳转中间页给区别开来,可以做两个不一样的嘛。
至此教程结束,下面我们再分享另外一种界面效果都差不多。
炫呆了吧~跟上面的方法基本一样都是一个意思,下面来看下教程:
首先在主题文件 “functions.php” 中加入以下代码:
// 自动给文章的外部链接添加nofollow属性 add_filter('the_content','web589_the_content_nofollow',999); function web589_the_content_nofollow($content){ preg_match_all('/href="(http.*?)"/',$content,$matches); if($matches){ foreach($matches[1] as $val){ if( strpos($val,home_url())===false ) $content=str_replace("href=\"$val\"", "rel=\"nofollow\" href=\"" . get_bloginfo('wpurl'). "/link?url=" .base64_encode($val). "\"",$content); } } return $content; }
然后新建一个“ index.php ”文件,复制以下代码点击保存上传到网站根目录的“link”文件夹下,如果没有新建一个。
<?php $url = $_GET['url']; $a = ''; if( $a==$url ) { $b = "https://www.xxx.cn/"; // echo 'true'; } else { $b = $url; $b = base64_decode($b); } //Template Name:链接跳转(有过度) ?> <!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <meta http-equiv="refresh" content="0.1;url=<?php echo $b; ?>"> <title>正在跳转请稍候....</title> </head> <body> </body> </html>
好了,两种外链自动转内链的方法就实现了,可以任选其一。