0
我一直與laravel 4一起工作很長一段時間沒有問題,現在我在laravel 5中進行休息,所以我發現了一些令人沮喪的錯誤,我不知道如何解決,這裏的代碼。Laravel 5其他路線顯示404
路線
Route::get('/', '[email protected]');// works
Route::get('home', '[email protected]');//dont work
//Route::get('/home', '[email protected]');//still doesn't work
控制器
public function index()
{
return view('home');//it works
}
public function home()
{
return view('home');// it does not work :(
}
的home.blade.php
@extends('app')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="panel panel-default">
<div class="panel-heading">Home</div>
<div class="panel-body">
You are logged in!
</div>
</div>
</div>
</div>
</div>
@endsection
在瀏覽器 http://mailing_creator.dev/ < <它打開歡迎頁面正常 http://mailing_creator.dev/home < < <它顯示404找不到:(
任何想法?