Php removes the PHPSESSID configuration method from the URL, urlphpsessid. Php removes the PHPSESSID configuration method from the URL. urlphpsessid is mainly available on the Linux platform, mainly because of php. session in ini. use_trans_sid: php removes the PHPSESSID configuration method 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.
How can I remove PHPSESSID from the url? (PHP website)
1. check whether the configuration you modified is currently enabled.
2. clear cookies
How does php remove unnecessary parts of the URL address?
$ S = [URL string ];
Using aappsexplode('.html ', $ S );
$ S = $ A [0]; // This $ S is the string after '.html 'is removed from the URL string.
This is mainly because session. use_trans_sid is configured in php. ini...