我在我的域名中创建了一个iframe,我将另一个网站称为iframe。
所以它工作正常,直到根据http重定向所有链接。但是当它重定向到其域的https服务器时,它会显示损坏的图像页面。
任何人都可以给我任何建议,这将是最好的解决方案。
<?php
header("access-control-allow-origin: *");
include "views/***/header.html";
?>
<section>
<?php if($this->page_name=='content'){ ?>
<div>
<iframe id='iframe2' src="http://content.******.com/?s=jd" frameborder="0" style="overflow: hidden; height: 900px; width: 100%;scrolling=no;"></iframe>
</div>
<?php }
else if($this->page_name=='recruiter'){ ?>
<div>
<iframe id='iframe2' src="http://recruiter.*****.com/v2/ecom/index.html?s=jd" frameborder="0" style="overflow: hidden; height: 900px; width: 100%;scrolling=no;"></iframe>
</div>
<?php } ?>
</section>
<?php include "views/***/footer.html"; ?>
这段代码无济于事,因为所有事情都发生在iframe中。