// +---------------------------------------------------------------------- use think\facade\Route; Route::get('think', function () { // $absolutePath = realpath('./public/img_poster.jpg'); $currentDir = getcwd(); $absolutePath = $currentDir . '/public/img_poster.jpg'; return $absolutePath; }); Route::get('hello/:name', 'index/hello'); Route::get('baji', function () { // return 'hello'; // return view('baji'); $wxServer = new \app\common\server\Wx($this->app); $user_base = $wxServer->generateUrlLink(); header("Location: " . $user_base); exit(); }); Route::get('baji1', function () { // return 'hello'; return view('baji'); });