Sites with URL query parameter are not logged in entry pages

Hi! I have a site which generates a query parameter inside URL and it looks like this
https://example.com
https://example.com/?q=exmaplesite
In Visitors tab, for example Visits Log, you can see all the entries logs and all the visited pages, but in the bahavior tab and entry pages logs there are no statistics of sites with the query parameter.
Any suggestions how to solve this problem?

Thanks.

If enyone was interested, I found a solution how to solve this problem. It’s kind of a workaround, but it works.
I just added a code before _paq.push([“trackPageView”]) that cuts of a query parameter inside URL:

_paq.push([‘setCustomUrl’, location.toString().replace(’?q=’,’’)]);

1 Like