我在 SERVER_A 上有 fileA.php,在 SERVER_B 上有 fileB.php
fileB.php 向 fileA.php 发出 curl 请求以获取其内容
fileA.php 如何确定请求是专门来自 fileB.php 的?
--
我正在考虑将 fileB.php 中的 $_SERVER['SCRIPT_NAME'] 发送到 fileA.php 但是因为有人可以进入 fileB.php 或任何一般文件,只需执行 $_SERVER['SCRIPT_NAME'] = 'fileB.php '; 它并不是那么安全。
那么,出于安全原因,我如何确定请求来自不同服务器上的特定文件?