gpt4 book ai didi

php - 阻止直接访问页面,但允许嵌入 iframe

转载 作者:行者123 更新时间:2023-12-04 16:03:11 25 4
gpt4 key购买 nike

我能否阻止对文件的直接访问,但允许该页面作为 iframe 嵌入到其他页面中?

我在服务器端使用 Apache 和 php,要包含的文件在同一个域中。

最佳答案

也许不是最好的解决方案(因为某些浏览器或路由器会删除它)但您可以使用 HTTP_REFERER 服务器值吗?

类似于:

<?php
if($_SERVER['HTTP_REFERER'] !== 'http://my-domain.com/page-x') {
header('HTTP/1.1 403 Forbidden');
exit;
}
//rest of code here

关于php - 阻止直接访问页面,但允许嵌入 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29924019/

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