将用户重定向到 Facebook Canvas 页面上的我的网站

发布于 2024-11-07 07:20:13 字数 157 浏览 0 评论 0原文

我有一个小问题。 我想在用户访问我的 Facebook 画布页面时将其重定向到我的网站。 就像在friend.ly 中一样。他们将用户重定向到他们的网站,而不是在 Canvas 页面中显示内容。 问题是,当我使用 PHP header 函数时,它在 iframe 中显示网站。我想重定向我的整个页面。

I have a small problem.
I want to redirect a user to my website when he visits my facebook canvas page.
As in friend.ly. They redirect user to their website rather than displaying the content in the Canvas page.
The problem is that when i am using the PHP header function, it is showing the website in the iframe. I would like to redirect the entire page in mine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠佳期 2024-11-14 07:20:13

您必须使用 javascript 才能到达 iframe 之外(通常称为框架破坏。)

<script>
window.top.location = 'http://www.yoursite.com/';
</script>

You have to use javascript to reach outside the iframe (commonly referred to as frame busting.)

<script>
window.top.location = 'http://www.yoursite.com/';
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文