我是laravel的初学者。我经历了一些教程和视频,现在我正在尝试构建我的应用程序。
在routes文件夹的web.php中,我有以下简单的代码来调用ListController的索引函数,
Route::get('/link','ListController@index');
然后在我的ListController.php中,我只是尝试显示hello world输出。
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ListController extends Controller
{
public function index(){
return "Hello World";
}
}
但是当我点击地址栏中的网址“http://localhost:8000/firstapp/public/link”时 我在RouteCollection.php第179行收到NotFoundHttpException:错误
我做错了什么?
答案 0 :(得分:0)
您正在URL中调用firstapp/public/link
,因此您需要路由整个路径,如
Route::get('/firstapp/public/link','ListController@index');