未备案域名打开国内服务器上的网站(绑定国外空间并判断url后跳转引用)

场景:由于域名没备案不能绑定国内服务器,通过先绑定国外空间,在空间着陆页判断当前url,打开不同的页面。页面上通过iframe引用国内服务器上的目标网站。

实现:未备案域名打开国内服务器上的网站。

国外空间着陆页:

<?php 
switch ($_SERVER["HTTP_HOST"]) 
{ 
case "www.abc.com": 
header("location:abc.html"); 
break;
case "aaa.cc": 
header("location:aaa.html"); 
break;
header("location:index.html"); 
} 
?>

 

调用页面:

<style>body{margin:0;}</style>
<iframe src="http://abc.wk0571.com/ " height="100%" width="100%"  frameborder="0">

 

posted @ 2015-09-17 13:51  暖风叔叔  阅读(1799)  评论(0编辑  收藏  举报