yml route redirectresponse create crear controlador component symfony routing

redirectresponse - symfony redirect to route



En Symfony2, ¿cómo redirecciono dentro de un Controlador a una URL con una etiqueta/hash de anclaje? (2)

En Symfony 3.2 puedes hacer esto:

// generating a URL with a fragment (/settings#password) $this->redirectToRoute(''user_settings'', [''_fragment'' => ''password'']);

Ver https://symfony.com/blog/new-in-symfony-3-2-routing-improvements

Estoy en un Controlador y quiero redireccionar a una URL, por ejemplo / home / news / example # comment1423

¿Cómo puedo agregar el hash en los parámetros de retorno?

return $this->redirect( $this->generateUrl("news_view", array("permalink" => "example")) );


La solución más simple probablemente sería la concatenación:

$url = $this->generateUrl("news_view", array("permalink" => "example")); return $this->redirect( sprintf(''%s#%s'', $url, ''comment1423'') );