TL;DR もう使わなくなったURLとかで、特定パス以下を全部リダイレクトしたいというケースってありますよね。 NginxやApacheでリダイレクトする方法もあると思いますが、アプリでやりたい場合もあると思います。 そういう場合の方法 Symfony Routingの書き方 この機能を利用 use Symfony\Component\Routing\Annotation\Route; class DefaultController { /** * @Route("/old-url-path/{any}", requirements={"any"=".+"}) */ public function someAction() { return $this->redirectToRoute('top_page'): } }