0

我在使用server2从另一个网站访问远程网站的代码时遇到了一些问题server1。我在 server2 内部使用的登录代码如下:

require_once("http://server2.com/access/models/config.php");
if (!securePage($_SERVER['PHP_SELF'])){die();}

//Prevent the user visiting the logged in page if he/she is already logged in
if(isUserLoggedIn()) { header("Location: http://server2.com/access/account.php"); die(); }

我所知道的是我不能使用 require/include 代码,因为这些代码用于从服务器内部调用 php 文件。有人知道从远程服务器登录到另一台服务器的代码是如何、在哪里或是什么?

4

1 回答 1

2

由于安全问题,您无法直接查看外部 php 文件。

如果您想从 server2 访问信息,我建议您在远程服务器上创建一个 RESTful 服务或其他 API,以便在您的服务器之间进行通信。

于 2013-07-28T20:58:53.377 回答