laravel
请问 为什么我使用路由 访问不到 '/' 之外内容 只访问到本身的这个路由Route::get('/', function () { return view('welcome'); }); 而这个Route::get('lianxi', function ( ) { return 'hello world'; }); 这个无法访问,是不是还需要配置入口文件 请问怎么配置呢 访问出现The requested URL /laravel/public/xianxi was not found on this server.