导航

iframe显示跨域url页面

Posted on 2014-10-17 19:00  网名还没想好  阅读(359)  评论(0编辑  收藏  举报

可以通过JS搞定跨域问题,但是比较麻烦,我就在后台处理了,其实这样本质上也算不上是跨域了

后台otherwebsite.php:

<?php
$url="www.otherwebsite.com";
echo "
<html>
<head>
    <title></title>
    <meta content='0; url={$url}' http-equiv='refresh'>
</head>
</body>
</html>
"?>

然后把这个php文件的地址放到iframe标签里的src里就可以了:<iframe src="otherwebsite.php"></iframe>