简体   繁体   English

Google Analytics漏斗通配符

[英]Google analytics funnel wildcard

I'm trying to set up a funnel for measuring sales of products on a site. 我正在尝试建立一个渠道来衡量网站上产品的销售情况。

I have steps of: 我有以下步骤:

www.mysite.com
www.mysite.com/category
www.mysite.com/category/*

It's my understanding that 'www.mysite.com/category/*' will match for 'www.mysite.com/category'. 据我了解,“ www.mysite.com/category/*”将与“ www.mysite.com/category”匹配。 But I want it to only match when they're on a product page (www.mysite.com/category/product). 但是我只希望它们在产品页面(www.mysite.com/category/product)上匹配。 The product part needs to be a wildcard because it could be anything. 产品部分必须是通配符,因为它可以是任何东西。

How can I achieve this? 我该如何实现?

Thanks for any help, James 谢谢您的帮助,詹姆斯

Try this: 尝试这个:

  1. ^/$ ^ / $
  2. ^/category/?$ ^ /类别/?$
  3. ^/category/.+ ^ /类别/.+

The first step is just the homepage path "/". 第一步只是首页路径“ /”。 The second step is the /category/ path only. 第二步仅是/ category /路径。 The third step is /category/ and then any string. 第三步是/ category /,然后是任何字符串。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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