Forum Moderators: open
www.MYDOMAIN.com/category.php?n=2&page=2&sort=m_in+desc&PHPSESSID=6b34be8dd57c70b750bea9a902
I see that most URL's/pages are well indexed in Google.
Should I put a site map on it, and which URL's should I put in sitemap:
This:
www.MYDOMAIN.com/category.php?n=2&page=2&sort=m_in+desc
Or This:
www.MYDOMAIN.com/category.php?n=2&page=2&sort=m_in+desc&PHPSESSID=6b34be8dd57c70b750bea9a902
(From Google Search Results)
Are those considered same URL's or Different?
Thanks!
You should never give a sessionID to a search engine spider, because the next time it makes a request from your site, it will get a different sessionID and interpret it as a different URL, and this will result in massive duplicate content.
Modify your script to allow major search engine spiders to access the site without assigning a session ID, and do not append sessionIDs to on-page links if the "visitor" is a search engine spider.
The implementation details will vary based on what scripting technology you use; After researching your script(s), you might want to ask specific code-technical questions is one of the scripting forums, and more-general questions in the e-commerce forum.
This is a very common problem, so you should be able to get answers easily. You might want to look at the CMS provider's web site -- It's possible there may already be a configuration option you can use to fix this.
Jim