我正在使用最新的 Laravel4,目前正在测试路由和控制器。我想定义一个到控制器(TestController)的路由,它负责处理可能的方法和所有其他 uri 段......
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
当调用 /test/test 或 /test/index
还有missingMethod不起作用...?