我正在尝试做我认为最基本的事情而且花费太多时间.我只是希望我的索引文件指向或转发到另一个文件.我最初是用一个简单的衬垫来做这个.
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();
解决方法:
通过执行$app [‘debug’] = true;来打开调试.
如果您有.env文件,还要确保它不会覆盖您的默认设置.
标签:php,silex
来源: https://codeday.me/bug/20190711/1434377.html