0
我有一個路由組中的兩個路由控制器:加前綴的路由控制器
Route::group(array('before' => 'auth'), function()
{
Route::controller('dashboard/', 'DashboardController');
Route::controller('dashboard/profile', 'DashboardProfileController');
});
這工作,直到我添加前綴鍵給數組:
Route::group(array('prefix' => 'dashboard', 'before' => 'auth'), function()
{
Route::controller('/', 'DashboardController');
Route::controller('/profile', 'DashboardProfileController');
});
這很奇怪的第一路由控制器作品因爲我可以訪問localhost/dashboard
但第二次失敗localhost/dashboard/profile
和或localhost/dashboard/profile/edit
這裏有什麼問題?
嘗試在'profile'前刪除斜線:Route :: controller('profile','DashboardProfileController'); – cheelahim
@cheelahim我已經做了,但沒有改變任何東西。 – revo
首先放入配置文件控制器。 – cheelahim