Routing does not work laravel 5?

I just installed the new laravel 5.1, only the root page shows that

Route::get('/', function () {

    return view('welcome');
});

It works fine, but not every other route does not work like:

Route::get('user', function () {
   return "hello";
});

It throws an exception 404 not found. Please help me get out of here. Thanks in advance.

+4
source share
1 answer

Perhaps because overwrite mode is not enabled on your system. Either you enable it, or access it via the following URL with index.php

http://localhost/blog/public/index.php/user
+1
source

Source: https://habr.com/ru/post/1627425/


All Articles