Jump to content

php session ids and search engines.


ted_chou12

Recommended Posts

My website pages (urls) seem to have session ids included in the urls, and i know that will some how effect the search engine prefreces, or anything to the search result, I have no access to the php.ini files, so does anyone know how this problem may be solved through the use of .htaccess files?

thanks

Ted

Link to comment
https://forums.phpfreaks.com/topic/47991-php-session-ids-and-search-engines/
Share on other sites

Can anyone please tell me if adding

php_value session.use_trans_sid 0 
php_value session.use_only_cookies 1 

to the .htaccess file in my root directory will work or not? and how to check if that the session ids in the urls are disabled so that I have successfully solved the problem?

Thanks again.

This is what I wrote, please check if I had done this correctly:

<?php //determine if is searchengine or not, and destroy sessions or not
$useragent = $_SERVER['HTTP_USER_AGENT'];
$result = false;
$searchengines = array("bot", "google", "yahoo", "msn");
foreach ($searchengines as $searchengine) {
$match = "/$searchengine/i";
if (preg_match($match, $useragent)) {$result = true;}}
if ($result == true) {session_destroy();}?>

Thanks

Ted

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.