Option 1 (Recommended)
The best option to exclude pages or page URLs that contain an expression like "checkout" or "signup" is using our built-in page exclude feature.
This options can be found under the "Display" step:
As you can see, it's pretty straightforward. Select the one of 2 options:
Not contains: exclude pages that contain an expression.
Not equal: exclude a specific page url.
Option 2 (Advanced)
Excluding certain URLs or pages can also be done by using the regex matcher (just click on "Regex" in the top of the Track or step).
To exclude a single page you can use the following regex template:
domain.com(?!.*exclude)
Replace the domain.com with your own and replace exclude with the phrase or page path you want to exclude.
โ
To exclude multiple phrases or pages use this template:
domain.com(?!.*(exclude1|exclude2|exclude3))