go.php
<?php
$t_url=$_GET['url'];
if(!empty($t_url)) {
preg_match('/(http|https):\/\//',$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://www.gzpu.com';
$title='参数错误 正在返回首页~~~';
}
}
} else {
$title='参数缺失,正在返回首页...';
$url='http://www.gzpu.com';
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="refresh" content="1;url='<?php echo $url;?>';">
<title><?php echo $title;?></title>
<style>
body{background:#}.loading{-webkit-animation:fadein 2s;-moz-animation:fadein 2s;-o-animation:fadein 2s;animation:fadein 2s}@-moz-keyframes fadein{from{opacity:}to{opacity:}}@-webkit-keyframes fadein{from{opacity:}to{opacity:}}@-o-keyframes fadein{from{opacity:}to{opacity:}}@keyframes fadein{from{opacity:}to{opacity:}}.spinner-wrapper{position:absolute;top:;left:;z-index:;height:%;min-width:%;min-height:%;background:rgba(,,,0.93)}.spinner-text{position:absolute;top:%;left:%;margin-left:-90px;margin-top: 2px;color:#BBB;letter-spacing:1px;font-weight:;font-size:36px;font-family:Arial}.spinner{position:absolute;top:%;left:%;display:block;margin-left:-160px;width:1px;height:1px;border:25px solid rgba(,,,);-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;border-left-color:transparent;border-right-color:transparent;-webkit-animation:spin .5s infinite;-moz-animation:spin .5s infinite;animation:spin .5s infinite}@-webkit-keyframes spin{%,%{-webkit-transform:rotate(0deg) scale()}%{-webkit-transform:rotate(720deg) scale(0.6)}}@-moz-keyframes spin{%,%{-moz-transform:rotate(0deg) scale()}%{-moz-transform:rotate(720deg) scale(0.6)}}@-o-keyframes spin{%,%{-o-transform:rotate(0deg) scale()}%{-o-transform:rotate(720deg) scale(0.6)}}@keyframes spin{%,%{transform:rotate(0deg) scale()}%{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>
随机推荐
- C#中字节数组byte[]和字符串string类型的相互转换
C#中字节数组byte[]和字符串string类型的相互转换: string转byte[]: byte[] byteArray = System.Text.Encoding.Default.GetBy ...
- C++内存管理(new operator/operator new/operator delete/placement new)
new operator 我们平时使用的new是new操作符(new operator),就像sizeof一样是语言内置的,不能改变它的含义,功能也是一样的 比如: string *ps = new ...
- machinekey相关信息
在session共享时必须将web.config中的machineKey配置为相同的加解密算法 <system.web> <machineKey decryptionKey=&quo ...
- CAD 批量提取点坐标,实现坐标的快速提取
原创 CAD 批量提取点坐标,实现坐标的快速提取 2018-08-07 20:36:13 caohongji 阅读数 13678 版权声明:本文为博主原创文章,遵循CC 4.0 BY-SA版权协议 ...
- Android开发实战——记账本(3)
开发日志(3)——适配器 昨天将bean类还有DatabaseHelper类写完.为了在MainActivity中调用,将数据保存到数据库中并显示出来.所以要先编写适配器CostListAdapter ...
- jenkins新建任务详解
一.新建任务 点击左侧新建任务 输入任务名称-->选择构建一个自由风格的软件项目-->确认 进入任务配置页面 二.基本配置 General 配置构建保留天数,保留个数,必要时并发构建 源码 ...
- 关于video++,jsrun,有道笔记等的感想
这几天一直在思考切入点.想了很多,有关于给初创企业提供社交平台营销的,如公众号,小程序,支付宝的到位,附近等.这些初看起来可行,细想起来有一些根本不完备.如通过微小宝多平台客户端了解最热的内容,在内容 ...
- Bugku-CTF分析篇-手机热点(有一天皓宝宝没了流量只好手机来共享,顺便又从手机发了点小秘密到电脑,你能找到它吗?)
手机热点 httppan.baidu.coms1cwwdVC 有一天皓宝宝没了流量只好手机来共享,顺便又从手机发了点小秘密到电脑,你能找到它吗? 题目来源:第七季极客大挑战
- bugku 域名解析题 50
什么是域名解析???? 首先我们在Windows上找到文件“C:\Windows\System32\drivers\etc\hosts” 然后找到host 双击用记事本打开然后填写上黄色区域上的东西 ...
- CLR处理损坏状态的异常
你有没有写过不太正确但足够接近的代码?当一切顺利的时候,你是否不得不编写运行良好的代码,但是你不太确定当出了问题时会发生什么?有一个简单的.不正确的语句可能位于您编写或必须维护的代码中:catch ( ...