Archive for the 'PHPSESSID' Category

How to Remove PHPSESSID

Thursday, July 12th, 2007

Insert the following code into .htaccess to remove session IDs from your website URLS
php_value session.use_only_cookies 1
php_value session.use_trans_sid 0

This code tells the server to store the PHPSESSID in a cookie or not to bother. If the browser does not have cookies enabled, then the session id won’t move to the URL. This does mean that all functionality […]

What is PHPSESSID?

Thursday, July 12th, 2007

PHPSESSID is the Session ID in PHP which can cause some real problems when search engines index your pages.
You should disable PHPSESSID on your sites and keep session IDs in cookies instead.
It will be more helpful, if you disable PHPSESSID in the URL because visitors must have cookies enabled to make use of any code which requires […]