我在https网站上有一个页面说SELECT ROW_NUMBER() OVER(ORDER BY Desc)ID,*
FROM(
SELECT Desc, Desc2,SUM(Amt)Amt
FROM Your_Table
GROUP BY Desc, Desc2
)D
,其中包含指向同一网站中另一个php页面https://www.example.com
的iframe。
target.php
此target.php正在使用
将请求重定向到另一个 http 网址<iframe src="/target.php"></iframe>
不幸的是,这个重定向到http网站的工作并不适用于https iframe。虽然它可以在http页面中使用iframe。
我试过了
header("Location: http://demosite/page" ,TRUE, 307)
并在file_get_contents("http://demosite/page")
中卷曲(而不是标题重定向)。那些没有以适当的格式返回页面。
有人可以告诉我如何在https页面的iframe中显示http页面。
提前致谢。
答案 0 :(得分:0)
在重定向中省略协议。然后它将自动使用用于访问target.php
的相同协议:
header("Location: //demosite/page", true, 307);