随笔分类 -  lumen

摘要:项目目录/public/index.php/接你设置的路由 比如设置了 $app->get('/test', function () use ($app) { return $app->version();}); 就是 项目目录/public/index.php/test 阅读全文
posted @ 2017-03-28 10:10 汪昕 阅读(2957) 评论(0) 推荐(0)
摘要:解决:进入 public/index.PHP 将 $app->run(); 修改成下面的: $request = Illuminate\Http\Request::capture(); $app->run($request); 亲测可用:) 阅读全文
posted @ 2017-03-27 22:24 汪昕 阅读(2455) 评论(0) 推荐(0)