This article mainly introduces the solution of php-developed website URLs with PHPSESSID, that is, to transfer PHP cross-page SESSION to php. ini, so that this parameter will not appear in the URL.
This article mainly introduces the solution of php-developed website URLs with PHPSESSID, that is, to transfer PHP cross-page SESSION to php. ini, so that this parameter will not appear in the URL.
This problem occurs mainly on the Linux platform, mainly because of the session. use_trans_sid configuration problem in php. ini.
Set php. session in ini. use_trans_sid = 1 or enable the-enable-trans-sid option during compilation to enable PHP to automatically pass the session id across pages, the session id will be passed through the & PHPSESSID method, which may cause a lot of trouble for PHP development and URL standardization. change use_trans_sid = 0 to solve the problem.
,