Hey all another problem with my site, someone told me this
my site is sigtraders.com
"but session ID's in your URL's is going to kill your SERPS!"
Could someone explain what they are talking about, and could anyone help me fix it
heres what a few ppl suggested.
"Also you can get rid of the SESSIONID with the following code snippets"
PHP Code:
set_magic_quotes_runtime(0);
ini_set('session.use_only_cookies', true);
ini_set ('url_rewriter.tags', '');
/*
session.use_trans_sid cannot be changed via ini_set as it
The decision to enable the rewriter is made before your
script starts running.
*/
Reply 2
"You could try adding these two lines before you start your session."
PHP Code:
ini_set('session.use_trans_sid', false);
ini_set("url_rewriter.tags","");
session_start();
Reply 3
"It's even easier than that, there is a line you can put in the .htaccess file that will disable session ids."
php_flag session.use_trans_sid off
put that in your .htaccess file in the root directory, should disable the php session ids in the url
What do you guys think is the best option ?