I deployed my website on line and all works fine,but I have in the end of link of pages something like that :
../..?PHPSESSID=....
So my qu
PHPSESSID is not added by Symfony, PHP is configured to append the PHPSESSID variable to the URL to allow PHP to track the session. You can disable this behavior by using
ini_set('session.use_trans_sid',false);
Please see My web host is adding ?PHPSESSID=fgh2h45... to the end of the URL for more details