我正在尝试一个 restfull 控制器,但是以这种方式绑定两个 url 似乎不再起作用了。这个怎么处理最好?
// in the routes file
Route::get('/,new',array('as'=>'new_bit','uses'=>'BitsController@getNew'));
Route::controller('bits','BitsController');
// the controller
class BitsController extends BaseController {
public $restful = true;
/**
* Display a listing of the resource.
*
* @return Response
*/
public function getIndex()
{
return "this is the bits controller";
}
public function getNew()
{
return "this is the new page";
}
}