Hi Sakir, in the case you are using Apache Server with AJP in front of Liferay (Tomcat), you can try the following in AJP configuration:
ProxyPassReverseCookiePath / /For instance, in my /etc/httpd/conf.d/proxy_ajp.conf I have something like this:
1<IfModule !proxy_ajp_module>
2 LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
3 </IfModule>
4 ProxyPass / ajp://localhost:8009/
5 ProxyPassReverse / ajp://localhost:8009/
6 ProxyPassReverseCookiePath / /
After restarting, jsessionid is not longer in URLs. Hope it helps!
Please sign in to flag this as inappropriate.