我试图做我认为最基本的事情并且花费太多时间。我只是希望我的索引文件指向或转发到另一个文件。我原来是用一个简单的单线工具做的。
require_once getcwd() . "/web/source/index.php";
我迁移到Silex后试过这个:
$app->get('/', function($path) use($app) {
return $app->sendFile('/web/source/index.php');
});
但没有去。
当我访问我的网站时,我得到了一个非常具有描述性的"哎呀出了问题"。我该如何解决这个问题?
以下是包含所有样板的完整代码:
require_once __DIR__ . '/vendor/autoload.php';
$app = new Silex\Application();
$app->get('/{name}', function($name) use($app) {
// this works fine
return ' test: '. $app->escape($name);
});
$app->get('/', function($path) use($app) {
// this does not
return $app->sendFile('/web/source/index.php');
});
$app->run();
答案 0 :(得分:0)
通过$app['debug'] = true;
打开调试。
如果您有.env
个文件,请确保它不会覆盖您的默认设置。