我正在使用laravel 5.首先,我按如下方式定义了一条路线:
Route::get('/', function()
{
echo "entered here.";
}
);
当我使用 http://localhost:8383/onboardadmin3/public/ 访问它时,它运行正常。但是当我改变路线时如下:
Route::get('/test', function()
{
echo "entered here.";
}
);
并尝试使用 http://localhost:8383/onboardadmin3/public/test 访问它,我收到以下错误:
RouteCollection.php第161行中的NotFoundHttpException:
我已经从以下链接中读取了堆栈溢出解决方案但没有帮助:
我该如何解决这个问题?