我有一个问题,在某种程度上启用显示iframe指向站点而没有使用证书的网站上的SSL证书?
1。第一种方法:当我把iframe放到WP Html帖子编辑器时:
< iframe src="http://.." width="100%" height="700"></iframe>
它无效,iframe显示为404错误。
2。第二种方法:我制作了自定义文件scrapedcontent.php并将其上传到网络的根目录。
文件scrapedcontent.php代码:
<?php
$homepage = file_get_contents('http://..');
echo $homepage;
?>
然后我通过WP帖子中的iframe调用此文件:
< iframe src="/scrapedcontent.php" width="100%" height="700"></iframe>
这有效,但根本没有加载CSS样式等。
非常感谢如何正确地将iframe http站点改为https网站。