php URL跳转代码

    文章来源:万象互联 更新时间:2012-2-6 18:48:32
分享:

URL跳转代码
1.代码:
<? $url=$_GET["url"];header("Location:"."http://".$url);?> 如保存为aaa.php,可以实现aaa.php?url=www.8869.org跳转到百度的效果.
这个简单的调用了默认的$_GET变量.以及php默认跳转Location:
2.实例升级:增加if循环
代码:
复制代码 代码如下:
<?
$url=$_GET["url"];
if (strlen($url >=3)){
header("Location:"."http://".$url);
}
?>
<html>
<head>
<title>URL转向页</title>
</head>
<body>
<form id="url" name="url" method="get" action="#">
<label>http://
<input name="url" type="text" value="" />
</label>
<input type="submit" name="Submit" value="提交" />
</form>
</body>
</html>

版权说明:本站原创文章,由万象互联SEO优化发表.
本文地址:https://www.hulian.top/zixun/post/4684.html
在线咨询
  • 在线时间
  • 8:00-21:00