使用php在iframe中重定向

时间:2013-06-10 16:22:00

标签: php javascript jquery html iframe

假设我正在使用iframe在我的网站上显示其他网站。但是,如果显示的站点有重定向重定向到其域上的某些其他页面,则重定向会导致整个浏览器重定向到我不希望发生的其他站点。

是否可以将重定向显示在iframe中,而不是让整个浏览器重定向到另一个页面?

1 个答案:

答案 0 :(得分:0)

使用HTML5,添加了iframe sandbox属性。在撰写本works on Chrome, Safari, Firefox and recent versions of IE and Opera时,您可以完成您想要的任务:

<iframe src="url" sandbox="allow-forms allow-scripts"></iframe>

如果您想允许顶级重定向,请指定sandbox="allow-top-navigation"