我正在使用超薄框架在 PHP 中设计一个 API。这些在我的本地系统和我的公共 IP 上运行良好。但现在我将这些 API 文件上传到我的公司服务器上。
现在我正在尝试访问存储在我公司服务器上的 API,但是这些显示的是空白页面,这意味着我无法调用 API。
这是API
<?php
include('connect.php');
header('Content-type: text/xml');
header('Content-type: application/json');
// Include the Slim library
require 'Slim/Slim.php';
// Instantiate the Slim class
$app = new Slim();
$app->get('/', function () {
echo "Pericent is working on Campus Concierge...";
});
$app->run();
?>
这在本地正常工作,但是当我想访问公司服务器时它没有显示任何内容。