Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.