Hi all,
in site the urls are in this format
www.test.com/index.html?jsessionid=183926321
Now, jsessionid can have multiple value so, in the report pages I have the same page but replicate for different jsessionid.
Who I can remove jsessionid from report pages?
Solved! Go to Solution.
Hi ,
As per our understanding , you are not putting any PageName value in s.pageName Hence it defaults to Page URL . Hence we would suggest to refer the below documentation on Page URL.
https://marketing.adobe.com/resources/help/kb/en_US/analytics/kb/obtaining-url-reports.html
Thanks & Regards
Parit Mittal
Views
Replies
Total Likes
Hi ,
As per our understanding , you are not putting any PageName value in s.pageName Hence it defaults to Page URL . Hence we would suggest to refer the below documentation on Page URL.
https://marketing.adobe.com/resources/help/kb/en_US/analytics/kb/obtaining-url-reports.html
Thanks & Regards
Parit Mittal
Views
Replies
Total Likes
Or you stick with location.href and remove ;jsession.
s.pageURL = window.location.href.replace(/;jsessionid=\w{32}/g, "");
Assuming the jessionid is 32 characters long.
Views
Likes
Replies