如何使用laravel 5.8创建多个路由

I'm using version 5.8 of laravel and I'm trying to initialize the routes. It is not possible to access the route created after the default route:

Route::get('/', function () {
    return view('welcome');
});

I try to add a parameter in the second route:

Route::get('/page', ['as' => 'home', function (/page) {return view('page1') ;}]);

I got 404 error. How can I use multiple routes ?

This is my web.php file:

<?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('/page', function() { return view('page1'); })->name('home');
Route::get('/', function () {
    return view('welcome');
});

Did you copied the second route, or what are you trying to do with this?

You can try this one instead as your syntax is wrong:

Route::get('/page', function() { return view('page1'); })->name('home');

-- EDIT

You can also return just the views from your routes if you don't plan to use a controller, like this:

Route::view('/', 'welcome');
Route::view('/page', 'page1');

In some cases, it's possible the problem is about mod_rewrite in your webserver