将WordPress外链转内链的修改方法,网站SEO优化必备!

方法、纯手工修改源代码
纯手工修改源代码Wordpress外链转内链,操作起来略麻烦,且每次主题更新后得再次操作一遍,适合对源代码有一定经验的朋友,优点是不需要安装插件,内链跳转链接美观。

步骤一:
修改主题的 functions.php 文件,路径为:/网站路径/wp-content/themes/主题文件夹/functions.php,然后添加以下代码:

add_filter('the_content','baezone_the_go_url',999);
function baezone_the_go_url($content){
preg_match_all('/href="(.*?)"/',$content,$matches);
if($matches){
foreach($matches[1] as $val){
if( strpos($val,home_url())===false ) $content=str_replace("href=\"$val\"", "href=\"" . get_bloginfo('wpurl'). "/go.php?url=" .base64_encode($val). "\"",$content);
}
}
return $content;
}

 

步骤二:

在网站根目录新建一个go.php文件,并输入如下内容并保存。

 

<!--?php 
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"]);
 
//数据处理
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='https://'.$t_url;
          $title='页面加载中,请稍候...';
      } else {
          $url = 'https://'.$_SERVER['HTTP_HOST'];
          $title='参数错误,正在返回首页...';
      }
  }
} else {
    $title = '参数缺失,正在返回首页...';
    $url = 'https://'.$_SERVER['HTTP_HOST'];
}
?>


<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%20echo%20$url;?>';"></noscript>
<script>
function link_jump()
{
    //禁止其他网站使用我们的跳转页面
    var MyHOST = new RegExp("<?php echo $_SERVER['HTTP_HOST']; ?>");
    if (!MyHOST.test(document.referrer)) {
         location.href="https://" + MyHOST;
    }
    location.href="<?php%20echo%20$url;?>";
}
//延时5S跳转,可自行修改延时时间
setTimeout(link_jump, 2000);
//延时10S关闭跳转页面,用于文件下载后不会关闭跳转页的问题
setTimeout(function(){window.opener=null;window.close();}, 10000);
</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>


<div class="loading">
  <div class="spinner-wrapper">
    <span class="spinner-text">页面加载中,请稍候...</span>
    <span class="spinner"></span>
  </div>
</div>

 

THE END
点赞2251 分享
强烈建议禁止!这5个功能,让你电脑变的更加安全!! | 零度解说-零度会员
重磅消息!Stable Diffusion 3 震撼发布,能否吊打Sora就看它了!! | 零度解说-零度会员

重磅消息!Stable Diffusion 3 震撼发布,能否吊打Sora就看它了!! | 零度解说

https://youtu.be/A01J_NOdGbU ============== Stable Diffusion 3 申请:https://www.lingdu80.com/11665.html https://www.lingdu80.com/11665.html
admin的头像-零度会员admin
1.3W+1527
Ubuntu桌面版系统必备的5款软件的安装教程-零度会员

Ubuntu桌面版系统必备的5款软件的安装教程

  1.Chrome浏览器安装 下载Chrome的软件包 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 下载以后 我们以管理员的身份 来进行安装下 输入这个安装命...
EaseUS Fixo 免费赠送密钥 – 修复损坏的视频、照片和文件 【限免】!-零度会员

EaseUS Fixo 免费赠送密钥 – 修复损坏的视频、照片和文件 【限免】!

EaseUS Fixo 是一款功能强大的软件,旨在修复和恢复损坏的视频、照片和文档。无论您是专业人士还是家庭用户,这款工具都能快速高效地恢复您的数字文件。使用EaseUS Fixo,您可以找回看似永远丢...
admin的头像-零度会员admin
2.2W+1771
谷歌正在关闭 Stadia!将退还所有 Stadia 购买 - 硬件、软件和 DLC-零度会员

谷歌正在关闭 Stadia!将退还所有 Stadia 购买 – 硬件、软件和 DLC

谷歌正在关闭 Stadia 谷歌将退还所有 Stadia 购买 - 硬件、软件和 DLC。Stadia 团队的成员将在 Google 的其他部门“推进这项工作”。 谷歌正在关闭其云游戏服务 Stadia。该服务将持续为玩家提供...
admin的头像-零度会员admin
1.6W+2250
【限免】XenArmor 电子邮件密码恢复专业版【免费密钥】!-零度会员

【限免】XenArmor 电子邮件密码恢复专业版【免费密钥】!

XenArmor Email Password Recovery Pro可帮助 Windows 用户从电子邮件客户端和浏览器(例如 Chrome、Firefox、IE、Outlook、Thunderbird、IncrediMail 等)恢复忘记的电子邮件密码。该软件功能...
admin的头像-零度会员admin
83621366
15 款精品软件推荐!完全免费开源,Windows 用户必备神器! | 零度解说-零度会员
Windows 11 支持的 AMD 处理器-零度会员

Windows 11 支持的 AMD 处理器

支持 Windows 11 在线升级安装的 AMD 处理器 AMD AMD 3015e AMD AMD 3020e AMD Athlon™ Gold 3150C AMD Athlon™ Gold 3150U AMD Athlon™ Silver 3050C AMD Athlon™ Silver 3050e AMD Athlon...
Windows 10提示功能和小技巧,将会为你节省大量宝贵时间! 2020 | 零度解说-零度会员

Windows 10提示功能和小技巧,将会为你节省大量宝贵时间! 2020 | 零度解说

  HEVC免费扩展下载:点击下载 (有区域限制) 免登入启动WIN10的命令:netplwiz 发送到Sendto命令:shell:sendto     【更多资源】▶https://www.youtube.com/channel/UCvijahEyG...