<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class DefaultController extends AbstractController{ /** * @Route("/default", name="default") */ public function index() { return $this->redirectToRoute('dashboard', [],307);// return $this->render('default/index.html.twig', [// 'controller_name' => 'DefaultController',// ]); }}