我正在尝试一个安静的控制器,但是以这种方式绑定两个网址似乎不再起作用了。如何最好地处理?
// 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";
}
}
答案 0 :(得分:0)
Laravel4的解决方案归功于JasonLewis在Irc
Route::get('/{new?}', array('as' => 'new_bit', 'uses' => 'BitsController@getNew'))->where('new', 'new');