Is it possible to turnoff jsessionid in the url in tomcat? the jsessionid seems not too search engine friendly.
Please Advise Thanks
|
Is it possible to turnoff jsessionid in the url in tomcat? the jsessionid seems not too search engine friendly. Please Advise Thanks
| |||
|
feedback
|
|
You can use the tuckey rewrite filter. You can disable for just search engines using this filter, but I'd advise using it for all responses as it's worse than just search engine unfriendly. It exposes the session ID which can be used for certain security exploits (more info). Example config for Tuckey filter:
| |||||
feedback
|
Tomcat 7 supports the above config in your web-app web.xml, which disables URL-based sessions. | |||
|
feedback
|
|
Use a | |||||||
feedback
|
|
It is possible to do this in Tomcat 6.0 with: disableURLRewriting http://tomcat.apache.org/tomcat-6.0-doc/config/context.html e.g.
Within Tomcat 7.0, this is controlled with the following within an application: ServletContext.setSessionTrackingModes() Tomcat 7.0 follows the Servlet 3.0 specifications. | |||
|
feedback
|
|
Quote from Pool's answer:
It's worth mentioning, that this will still allow cookie based session handling even though the jsessionid is not visible anymore. (taken from his other post: http://stackoverflow.com/questions/2255814/can-i-turn-off-the-httpsession-in-web-xml/2256061#2256061) PS. I don't have enough reputation to comment, otherwise I would have added this to his post above as a comment. | |||
|
feedback
|
|
Also if you have Apache in front of Tomcat you can strip out the jsession with a mod_rewrite filter. Add the following to your apache config.
This will do a 301 redirect to a page without the jsessionid. Obviously this will completely disable url jsessionid's but this is what I needed. Cheers, Mark | |||
|
feedback
|
|
By default, cookies are enabled in Tomcat server(you can explicitly set it by using cookies=true in element of server.xml). Enabling cookies means that jsessionID will not be appended to URL's since session will be managed using cookies. However, even after cookies are enabled, jsessionID's are appended to the URL for first request as the webserver doesn't know at that stage if cookies have been enabled. To remove such jsessionIDs, you can using tuckey rewrite rules: You can find more information on this at http://javatechworld.blogspot.com/2011/01/how-to-remove-jsessionid-from-url-java.html
You can find more information on this at http://javatechworld.blogspot.com/2011/01/how-to-remove-jsessionid-from-url-java.html | |||
|
feedback
|
|
In Tomcat 6.0 you could use disableURLRewriting="true" into context.xml from your /config path of you tomcat instalation. http://tomcat.apache.org/tomcat-6.0-doc/config/context.html context.xml file
... Now tomcat output it's search engine friendly... Enjoy | |||
|
feedback
|