0
這所有的請求是我的路線laravel 5.1 notfoundhttpexception除外「/」
<?php
Route::get('/', function() { return 'reached'; });
Route::post('first', function() { return 'first'; });
我可以看到結果爲reached
,如果我跑
localhost/project
但我不能看輸出first
如果我運行localhost/project/first
可能是什麼問題?
我剛安裝了illuminate/html
新鮮安裝後。
更新:
我甚至嘗試
Route::get('first', function() { return 'first'; });
很難理解你的問題。在調試路由時,運行artisan命令「artisan route:list」會很有幫助。這給你一個你的應用程序的所有路線的列表,並允許你檢查一切都是你想要的。 – Ragnarsson
當我運行命令,我得到這個輸出.. http://postimg.org/image/71whv8wzx/ –
嘗試使用'composer dump-autoload' – aldrin27