PHP、HTML外链转内链go.php跳转代码

新建go.php文件,复制以下代码,上传到你的网站,使用例如:http://localhost/go.php?https://cway.top在robots.txt中添加 Disallow:/go.php?* 代码即可屏蔽跳转链接。<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><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><?php$URLs = $_SERVER["QUERY_STRING"];$URLs = urldecode($URLs);if ($URLs == ''){$URLs = 'https://cway.top/';}print ($URLs);//exit;header("refresh:1;url=".$URLs); // 1秒后跳转到传入地址?>当然了,改写成HTML也非常简单,使用:http://localhost/go.html?https://cway.top<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><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><script> let url = window.location.search.substring(1); var t = 1; setInterval("go()", 1000); function go() { if (t == 0) { if (url == '') { window.location.href = 'https://cway.top/'; } else { window.location.href = url; } } t--; }</script>

利用阿里Teambition搭建个人网盘 TeambitionShare网盘直链解析

简述下流程:首先你要有Teambition账号,登录后创建项目,在网址栏复制project/后的一串字符(下文称为项目ID),安装以下开源项目到你的虚拟主机或Windows电脑,访问后设置项目id、Teambition的cookie等信息即可。源码PHP的,所以只需要PHP虚拟主机即可。TeambitionShare开源地址:https://github.com/FlxSNX/TeambitionShareGitee上的Fork地址:https://gitee.com/cwayteam/TeambitionShare.git彩虹的教程:http://blog.cccyun.cn/post-414.html当然windows电脑亦可直接运行node.js版本:https://hik.lanzoux.com/iz4skkictqf解压后直接运行即可。

PrettyCode代码高亮/代码复制zblog插件

这是一款代码高亮与代码复制插件,改进商店prettify插件,集合prettify代码高亮与代码复制功能,代码无语言,无编辑器限制,各种主题亦可使用。效果示例:<!DOCTYPE html><html><body><h1>我的第一张 PHP 页面</h1><?phpecho "Hello World!";?></body></html>下载:https://hik.lanzoui.com/iWMYjjbw7gf下载后解压上传本地插件即可

Lsky Pro(兰空图床) PHP程序

Lsky Pro(兰空图床),是基于 PHP+mysql 开发的图床系统,面向技术博客、个人博客、简书等支持 markdown 的平台等。 同样可作为云上相册使用,支持图片多图上传、拖拽上传、上传预览、全屏预览,限制游客上传等。更多功能可访问 https://www.lsky.pro 查看详细介绍。项目地址:https://github.com/wisp-x/lsky-pro/releases

DNSPod x 云开发CloudBase 建站特惠

serverless 建站,免服务器运维现在虽然很优惠,但是需要域名备案,可搭建wordpress之类建站程序https://cloud.tencent.com/act/pro/hosting01

网易云音乐一键签到打卡听歌300首PHP网页源码

网易云等级听歌亦可升级,这个可以一天让你一键“听”300首歌,加快你的网易云升级,该程序可能不支持部分虚机,可置于本地PHP环境测试下。以下资源来自网络下载:https://lanzoux.com/ivblufp7eof

【PHP】彩虹获取百度bduss源码

此为模拟百度登录获取BDUSS的源码,最新更新总共5种获取方式,分别是普通登录、扫码登录、短信验证码登录和第三方登录(包括QQ登录和微信登录),可无视异地和登录保护,来源于net909。下载:bduss_cccyun.zip

【PHP】彩虹获取百度bduss源码

AWS国际版删除付款方式/销户指南

登录aws国际站:https://signin.aws.amazon.com/控制台:https://console.aws.amazon.com/找到付款方式,生成虚拟卡信息,然后添加好后将自己原付款卡删除即可。虚拟信息生成网站:http://haoweichi.com/或者在账户设置页面直接关闭账户即可:https://console.aws.amazon.com/billing/home?#/account如果您于账号关停之后有重启账号的需求,请点击进入控制面板的支持中心,创建账户账单案例说明您的需求与疑问。将有专人回复您:https://console.aws.amazon.com/support/

Sakura Frp — 免费内网穿透 樱花穿透

很多都开始收费了,试试这款吧https://www.natfrp.com/

z-blog标签内链插件报错修复 错误代码:count(): Parameter must

错误代码:count(): Parameter must be an array or an object that implements Countable修复教程:第一步打开插件的include.php文件 搜索代码if(count($article)>0)更改为if(count((array)$article)>0)修改完成后,测试标签内链即可

z-blog标签内链插件报错修复 错误代码:count(): Parameter must