I have this code
/**
* Lists all User entities.
*
* @Route("/{cid}",defaults={"cid" = null},name="user")
* @Template()
*/
public function indexAction($cid=null)
{
Now if i type site/user/1 then it works but if type 'site/user/` then it says no route found
How can i have that both routes work
