将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 分享
Llama 3 正式发布!性能怎么样? 附最新下载安装教程 !轻松实现本地部署,完全免费开源!! | 零度解说-零度会员

Llama 3 正式发布!性能怎么样? 附最新下载安装教程 !轻松实现本地部署,完全免费开源!! | 零度解说

https://youtu.be/TCHnDqFdkLw     Llama 3 大模型下载安装:https://www.lingdu80.com/12146.html 更简单的安装方法:https://www.lingdu80.com/12152.html
【限免】Aiarty Image Matting(带 AI)免费密钥 – 从图像中去除背景-零度会员

【限免】Aiarty Image Matting(带 AI)免费密钥 – 从图像中去除背景

Aiarty Image Matting是一款全新的背景去除工具,旨在帮助您精准去除图像背景,对头发、皮毛和半透明元素等复杂物体进行遮罩处理,并无缝融合前景和背景。这款专业的照片编辑工具可帮助专业人士...
admin的头像-零度会员admin
3W+1538
Stable Diffusion 3 震撼发布,采用Sora同源技术,生成图像、视频真假难辨!-零度会员

Stable Diffusion 3 震撼发布,采用Sora同源技术,生成图像、视频真假难辨!

  ============== Stable Diffusion 3 申请地址:【点击前往】 Stable Diffusion 3 模型套件目前的参数范围为 800M 到 8B。 这种方法旨在与我们的核心价值观保持一致,为用户提供多种可扩...
admin的头像-零度会员admin
1.4W+1527
一键搜索并删除大文件的神器:Winder stat 、Everything-零度会员

一键搜索并删除大文件的神器:Winder stat 、Everything

1.Winder stat:【官网下载】或 【备用打包下载】WinDirStat 是一个适用于各种版本的Microsoft Windows的磁盘使用情况统计查看器和清理工具。注意:如果您正在寻找Linux的替代品,您正在寻找KDi...
admin的头像-零度会员admin
2.8W+1687
如何免费获取Office软件?你要的都在这里了!!-零度会员

如何免费获取Office软件?你要的都在这里了!!

  1.office 软件部署工具:https://www.microsoft.com/en-us/download/details.aspx?id=49117 2.office 版本自定义工具:https://config.office.com/deploymentsettings 3.基于KMS的 GVLK...
admin的头像-零度会员admin
5.2W+1134
微软推出最新视觉基础模型Florence-2 ,可在WebGPU的浏览器独立运行!-零度会员

微软推出最新视觉基础模型Florence-2 ,可在WebGPU的浏览器独立运行!

Florence-2:微软全新开源视觉模型! 能够执行超过10种不同的视觉任务 包括图像字幕生成、对象检测、图像区域关联和分割等。 它不仅能描述图片的内容,还能识别图片中的物体,并指出这些物体的...
admin的头像-零度会员admin
2.1W+2176
Windows 10 秒变 XP系统!重温经典,流畅度极高,大小只有3.7G!让老旧电脑再次充满活力 | 零度解说-零度会员
在 Windows 上查找程序安装位置的 4 种方法-零度会员

在 Windows 上查找程序安装位置的 4 种方法

需要在 Windows 中查找程序的位置?幸运的是,一旦你学会了如何做,这真的很容易。 当您安装一个新程序时,有时您不会注意它的实际运行位置。虽然这通常没什么大不了的,但有时您需要知道 Windo...
Windows 11 最新官方正版下载(2024)-零度会员

Windows 11 最新官方正版下载(2024)

  Windows 11 最新官方正式版:【点击下载】 下载 Windows 11 (当前版本:Windows 11 2023 更新 l 版本 23H2) 可通过下面的 3 个选项来安装或创建 Windows 11 介质。请分别查看每一个选项...
admin的头像-零度会员admin
1.4W+1527