|
I had a problem on one of my web-sites where I found that URLs
with Session IDs are created automatically for all PHP page which
used the PHP function session_start();
To correct this problem, I removed this function from all pages
which were to be spidered, and let it remain only on pages viewable
after Login. I also did a 301 redirect from URLs with session ids to
urls without session ids. This corrected the problem.
|