场景:因为域名没备案不能绑定国内服务器,经过先绑定国外空间,在空间着陆页判断当前url,打开不一样的页面。页面上经过iframe引用国内服务器上的目标网站。php
实现:未备案域名打开国内服务器上的网站。html
国外空间着陆页:服务器
<?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">