试图在我的本地机器上开发我们的应用程序,所以我安装了 WAMPP。现在我无法让所有文件找到彼此。
在我们的 index.php 文件中,我们有:
// SET CONFIG
require dirname(__FILE__).'/config.php';
// SET AUTOLOADING
require ("App/Libraries/Callback/Loader.php");
在 config.php 中,我们有:
// SET ROOT PATH
define('ROOT', realpath(dirname(__FILE__) . '/'));
define('URL_ROOT', $rootConfig['url_root']);
define('DOMAIN', $_SERVER['HTTP_HOST']);
一切都位于:C:\wamp\www\callbackstaffing
当我访问 localhost/callbackstaffing/ 时,应用程序无法正确加载
该怎么办??!?!