菜鸡源码,专注精品下载!
当前位置:首页 > 建站教程 > 建站知识

PHP实现页面跳转的代码

发布时间:2024-01-05  栏目:建站知识   浏览:   分类:php教程 跳转页面模板 php代码

PHP过度跳转页面代码通常使用`header()`函数实现。首先,需要设置`HTTP`头部信息,包括`Content-Type`、`Content-Length`和`Location`。然后,通过`header()`函数发送这些头部信息,实现页面跳转。例如,要跳转到百度首页,可以使用以下代码: ```php <?php header("Content-Type: text/html; charset=utf-8"); header("Content-Length: " . strlen($url)); header("Location: http://www.baidu.com"); exit(); ?> ``` 这段代码会将用户重定向到百度首页。需要注意的是,`header()`函数必须在输出任何实际内容之前调用,否则可能会导致错误。

PHP过度跳转页面代码,大致效果如下图

PHP过度跳转页面代码

新建个go.php文件 将下方的代码,复制粘贴到你新建的go.php文件中,保存(CSS代码我压缩了所以不用管,把https://www.caijicaiji.com/改成自己的网站地址)

代码如下

<?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='https://www.tx47.cn/';$title='参数错误,正在返回首页...';}}}else{$title='参数缺失,正在返回首页...';$url='https://www.caijicaiji.com/';}?><html><head><metahttp-equiv="Content-Type"content="text/html;charset=UTF-8"><metahttp-equiv="refresh"content="5;url='<?phpecho$url;?>';"><title><?phpecho$title;?></title><divid="circle"></div><divid="circletext"></div><divid="circle1"></div><html><head><metahttp-equiv="Content-Type"content="text/html;charset=UTF-8"><metahttp-equiv="refresh"content="1;url='<?phpecho$url;?>';"><title><?phpecho$title;?></title><style><styletype="text/css">html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}body{background:#3498db;}#loader-container{width:188px;height:188px;color:white;margin:0auto;position:absolute;top:50%;left:50%;margin-right:-50%;transform:translate(-50%,-50%);border:5pxsolid#3498db;border-radius:50%;-webkit-animation:borderScale1sinfiniteease-in-out;animation:borderScale1sinfiniteease-in-out;}#loadingText{font-family:'Raleway',sans-serif;font-size:1.4em;position:absolute;top:50%;left:50%;margin-right:-50%;transform:translate(-50%,-50%);}@-webkit-keyframesborderScale{0%{border:5pxsolidwhite;}50%{border:25pxsolid#3498db;}100%{border:5pxsolidwhite;}}@keyframesborderScale{0%{border:5pxsolidwhite;}50%{border:25pxsolid#3498db;}100%{border:5pxsolidwhite;}}</style></style></head><body><divid="loader-container"><pid="loadingText">页面加载中...</p></div></body></html>

调用方法

https://www.caijicaiji.com/go.php/?url=跳转到别人的网站


相关文章

    无相关信息
评论
建站知识
建站知识
使用技巧
调试安装
运营推广