Answer the question
In order to leave comments, you need to log in
Where does the attempt parameter come from in the request url?
I added route /admin to symfony, but when I go to https://mupexpress52.ru/admin from somewhere, the parameter ?attempt=1 appears, although it is not in the route
Ps parameter does not always appear
<?php
namespace App\Controller;
use App\Entity\ContactFeedback;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class IndexAdminController extends AbstractController
{
/**
* @Route("/admin", name="index_admin")
*/
public function index()
{
return $this->render('index_admin/index/index.html.twig');
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question