gpt4 book ai didi

php - 如果站点未显示在框架中则重定向

转载 作者:行者123 更新时间:2023-12-02 07:08:06 26 4
gpt4 key购买 nike

我有一个页面,如果它显示在 iframe 中,我只想显示它。

这在 PHP、htaccess 或其他东西中可能吗?怎么办?

我更喜欢 PHP 的解决方案

谢谢!

最佳答案

框架只是客户端,因此您无法通过 PHP 或 .htaccess 检查它。您可以在 Javascript 中检查它。看到这个线程:

How to identify if a webpage is being loaded inside an iframe or directly into the browser window?

编辑这是一个将为您重定向的示例。它是纯 Javascript,但如果您使用 jQuery 执行此操作,则可以将相同的函数写入 document.ready

<script>
function check_frame() {
if( top === self ) { // not in a frame
location.href = "/link/to/some/url"; // either the frameset or an error.
}
}
</script>
<body onLoad="check_frame()">
... normal code for your page here ...
</body>

请注意,该页面仍然可以是 PHP 页面,它只需要输出那部分 Javascript。

关于php - 如果站点未显示在框架中则重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8898856/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com