symfony redirecting redireccionamiento


/**
     * @Route("/random/{max}",name="random")
     */
public function randomAction($max)
    {
   
    $number = mt_rand(0, $max);
   
    return $this->render('lucky/number.html.twig', array(
    'number' => $number,
    ));
    }
    /**
     * @Route("/redireccionar/{max}")
     */
    public function redireccionarAction($max){
    return $this->redirectToRoute('random', array('max' => $max));
    }

entonces,
la url
http://symfoweb.local/lucky/redireccionar/7

llamará finalmente a

http://symfoweb.local/lucky/random/7

No hay comentarios:

Publicar un comentario

linux ubuntu mint actualizar chrome

 desde una terminal: $ sudo apt update $ sudo apt install google-chrome-stable