RouteCollection.php第161行Laravel中的NotFoundHttpException

时间:2016-05-19 07:11:04

标签: laravel-5

我正在使用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:

我已经从以下链接中读取了堆栈溢出解决方案但没有帮助:

  1. Laravel 5.1 NotFoundHttpException in RouteCollection.php line 161:
  2. NotFoundHttpException in RouteCollection.php line 161
  3. https://stackoverflow.com/questions/37186650/in-laravel-5-notfoundhttpexception-in-routecollection-php-line-161
  4. https://stackoverflow.com/questions/37186650/in-laravel-5-notfoundhttpexception-in-routecollection-php-line-161
  5. 我该如何解决这个问题?

0 个答案:

没有答案