I set some conversion sequences in Google Analytics. One of them is to analyze the traffic from the main site to the secondary advertising site working in a virtual directory (in the same domain)
I have to add that this is an installation form in Google Analytics, I cannot use other code (PHP, JS, C #, etc.), and this needs to be done in one step
So, for example, something like:
- /default.aspx or /directory/default.aspx or /somedirname/default.aspx
- [to>]
- /promotion/default.aspx
In the regex area, this will be:
- ^ / (?! promotion) (. *). Aspx
- [to>]
- ^ / promotion /(.*). Aspx
The problem is that Google Analytics no longer supports negative images, so regexp ^ / (! Promotion) (. *). aspx fails. ( Link here, first answer )
Is there any other way to do this?
Many thanks.
regex google-analytics
Darren
source share