编写新的路由全部访问报404错误,只有根路径正确
//能访问 Route::get('/', function () { return view('welcome'); }); //不能访问,404错误 Route::get('first', function(){ return 'hello, world'; });
//能访问 Route::get('/', function () { return view('welcome'); }); //不能访问,404错误 Route::get('first', function(){ return 'hello, world'; });
2018-07-19
举报