Also, you should never need to let google index a page that has a sessionid.
If google indexes a page of yours folks are going to come from a google search
results
to your page, without a session. Any page/jsp/servlet that you need a session
id on should
be in your robots.txt.
If your page is
Also, if you have been running your site with jsessionids for awhile
then the spiders have your jsessionid urls on their link frontier.
So the spiders will continue to crawl your site for jsession funky
urls even once you've prevented your tomcat from generating
them. Tomcat strips the jsession pa
Consider using a filter like this:
package com.foo;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
impo
ing sessions in jsp pages if you don't really
need them.
-Rashmi
- Original Message
From: Simon Pink <[EMAIL PROTECTED]>
To: "Tomcat Mailing List (users@tomcat.apache.org)"
Sent: Wednesday, December 6, 2006 5:53:53 PM
Subject: JSessionId and Google
Hi there,
It is
Hi there,
It is well noted by Google (and other search engines) that they do not like
session tracking info as part of the URL. This does include JSessionId, and
because Google visits your site as a cookieless user, every page indexed by
them includes JSessionId, this is bad for numerous reasons -
ss you have a
compelling reason
to support browsers with disabled cookies.
--
View this message in context:
http://www.nabble.com/JSessionId-and-Google-tf2297743.html#a7693602
Sent from the Tomcat - User mailing list archive at Nabble.com.
-
Thanks, I could try this, but I was kind of hoping for a more general Tomcat
solution (if there is one). I know Resin has a 'enable-url-rewriting' flag
that you can set in it's config.
I guess the question still is, does anyone definitively know if jsessionid
does have negative impact on Google r
couldn't you simply create a HttpServletResponseWrapper object in a
filter, this object could overwrite the method that encodes the URL and
remove the JSESSIONID from it
Filip
Simon wrote:
Hi,
According to the Google "Information for Webmasters" page, it appears
that Google will not index/
Simon wrote:
According to the Google "Information for Webmasters" page, it appears
that Google will not index/crawl pages correctly with the JSessionId
appended to the
You don't get it. They say, that your site should work correctly (i.e.
the navigation should work, the content should be correc
Hi,
According to the Google "Information for Webmasters" page, it appears
that Google will not index/crawl pages correctly with the JSessionId
appended to the URL, ie.:
http://www.stroke-education.com/product/ProductList.do;jsessionid=A2F6590DAC37E55651060DE6922B972D.tomcat36
The guidelines c
10 matches
Mail list logo