我正在使用最新的Laravel4並且正在測試路由和控制器。我想定義一個控制器(的TestController),這需要照顧的可能方法和所有其他的URI段的路線......laravel 4路由到通配符方法的控制器
Route::controller('/test', 'TestController');
控制器:
<?php
class TestController extends BaseController {
public function index()
{
echo "index";
}
public function test()
{
echo "test";
}
public function missingMethod($parameters)
{
echo "missing method";
}
}
但這不工作,總是:
Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
調用時/測試/試驗或/測試/索引
另外,missingMethod不工作......?
順便說一句:你不應該」噸處理上你的自我NotFounds。 Laravel已經有一個404事件了。 – DaGardner