私はlaravelをインストールし、ホームページを取得しましたlocalhost/laravel/public
。しかし、単純なルーティングを行うことはできません。
Route::get('/', function()
{
return View::make('hello');
});
Route::get('authors',function()
{
return View::make('hello');
});
ここで、 で同じビューを呼び出していますlocalhost/laravel/public/authors
。しかし、私は404を取得しています。
私は別の見方をしています/
が、そうではありませんauthors
Route::get('/', function()
{
return View::make('authors');
});
Route::get('authors',function()
{
return View::make('authors');
});
今、私は著者の見解を取得しています/
が、ではありませんauthors
。
ありがとう