简体   繁体   中英

How to remove URL parameters from Google Analytics reports

My Google Analytics record pages with dynamic parameters. URL looks like:

/iframe/dashboard/214301/customercare/cc /iframe/dashboard/842904/customercare/serviska-fb /module/customercare/serviska-fb/842904

The problem is that site content report cannot merge these URLs as an access to the same page /customercare .

How can I solve it?

I know that I can add a custom filter in the account settings, but how to setup regular expression?

在此处输入图片说明

Search and Replace Filters supports regular expressions so you might have a filter like:

Search string: /customercare(\/.*)
Replace string: /customercare

where (\\/.*) is a part of a regular expression matching all the characters following /customercare

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM