Я большой новичок в laravel, я пытаюсь показать страницы вроде http://localhost/MySite/about. Я сделал копию файла server.php index.php, но когда я набираю http://localhost/MySite/about в URL, http://localhost/MySite/ работает, но http://localhost/MySite/about не работает. ошибка, показывающая, что Объект не найден. Пожалуйста, помогите
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
Route::get('/about', function () {
return view('about');
});
Route::get('/contact', function () {
return view('contact');
});
Route::get('/gallary', function () {
return view('gallary');
});