2015-10-29 217 views
1

我正在學習Laravel 5。Laravel 5 - 路線不工作

我必須添加新的路線如下:

Route::get('items', function() { 
    // test code 
}); 

Route::get('items/create', function() { 
    echo "test"; 
    die(); 
    // test code 
}); 

我試圖表明我的瀏覽器上(http://localhost:8000/items/create)我的代碼。 但我得到了503錯誤。和http://localhost:8000/items工作正常。 我該如何解決它? 請幫幫我。

謝謝。

+0

嘗試'返回 「測試」;',而不是'echo'和'die'。 – samlev

+0

如果上面的@samlev說的沒有工作(404),那麼也許你必須用'php artisan route:clear'清除路由緩存 – trainoasis

回答

0

嘗試:

Route::get('items/create', function() { 
    return "test"; 
});