javascript - php检测网址 跳转页面
漂亮男人
漂亮男人 2017-05-16 12:02:09
0
2
519

首先看一段js代码:

MacPlayer.Html = '<iframe width="100%" height="'+MacPlayer.Height+'" allowTransparency="true" frameborder="0" scrolling="no" src="http://www.qbzhan.com/chaojikan.php?url='+MacPlayer.PlayUrl+'"></iframe>';
MacPlayer.Show();

http://www.qbzhan.com/chaojik...

需求:

写一段php代码检测等于号后面的内容:

所指的php代码也就是:http://www.qbzhan.com/chaojik...

如果访问地址是:
http://www.qbzhan.com/chaojik...

那让php跳转到:新连接:
http://www.qbzhan.com/iqi.php...
也就是:
http://www.qbzhan.com/iqi.php...

漂亮男人
漂亮男人

reply all(2)
刘奇

Your URLs have all become links, please modify them, otherwise I won’t understand what question you are asking

小葫芦

Solved, thank you

<?php
$url=empty($_GET['vid'])?$_GET['url']:$_GET['vid'];
$needleA= 'acfun.cn'; $needleB= 'iqiyi.com'; $needleC= 'v.qq.com'; $needleD= 'youku.com'; $needleE= 'toutiao.com';
     if(strpos($url, $needleA)>0){echo "<script>window.onload=function(){location.href='http://www.12399688.com/index/acfun.php?url=$url';}</script>";}
else if(strpos($url, $needleB)>0){echo "<script>window.onload=function(){location.href='http://www.65yw.com/rooog1/iqiyi.php?id=$url';}</script>";}
else if(strpos($url, $needleC)>0){echo "<script>window.onload=function(){location.href='http://www.12399688.com/index/qqvod.php?url=$url';}</script>";}
else if(strpos($url, $needleD)>0){echo "<script>window.onload=function(){location.href='http://www.12399688.com/index/youku.php?url=$url';}</script>";}
else if(strpos($url, $needleE)>0){echo "<script>window.onload=function(){location.href='http://www.12399688.com/index/https.php?url=$url';}</script>";}
else{echo "<script>window.onload=function(){location.href='http://www.12399688.com/admin.php?url=$url';}</script>";}
?>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!