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>
随机推荐
- Docker - ubuntu 镜像安装网络工具
概述 给 ubuntu 镜像, 安装一些基本的网络工具 背景 尝试学习的时候, 需要检测网络的连通性 没有这些工具, 绕了不少弯路 工具们 ping ip a 环境 docker 18.09 ubun ...
- 同步异步IO,阻塞非阻塞
同步异步 同步IO操作:导致请求进程阻塞,知道IO操作完成. 异步IO操作:不导致进程阻塞. 在处理(网络) IO 的时候,阻塞和非阻塞都是同步IO, 阻塞,就是调用我(函数),我(函数)没有接收完数 ...
- 转载:EQ
https://blog.csdn.net/qiumingjian/article/details/46326269 https://blog.csdn.net/sszhouplus/article/ ...
- 【转载】Hadoop面试(1)
转自:http://www.cnblogs.com/xiaolong1032/p/4504992.html 列举出hadoop常用的一些InputFormat InputFormat是用来对我们的输入 ...
- django入门与实践(开)
1.什么是Django? 基于python的高级web开发框架 高效 快速 免费 开源 正常上网流程 浏览器浏览网页的基本原理 请求响应过程 开发环境搭建 Python Django pip inst ...
- Docker - Deepin中docker不能启动容器,-d也无效
问题重现 1. 搭建mysql docker run -p 3306:3306 --name docker-mysql-5.7 -v $PWD/conf:/etc/mysql/conf.d -v $P ...
- linux下安装keepalived
keepalived安装文档 1. 安装环境 su - root yum -y install kernel-devel* yum -y install openssl-* yum -y instal ...
- python中的循环结构等相关知识
==分支结构== 1.单分支:一般用于只会发生一种情况的场景,if #90以上优秀 score=95 if score>90: print("优秀") 2.双分支:一般用于会 ...
- python 网页中文显示Unicode码
print repr(a).decode("unicode–escape") 注:a是要输出的结果,
- Codeforces Round #622 (Div. 2)
A: 题意: 有ABC的三种菜,现在有a个A,b个B,c个C,问能组成多少种不同菜单 思路: abc都大于等于4,肯定是7种,给abc排个序,从大到小举例删减 #include<bits/std ...