Created
October 12, 2020 17:41
-
-
Save ricealexander/d3eb8547b3ac40cbef6b506b0e3f81a0 to your computer and use it in GitHub Desktop.
Regular Expressions for STLPR Google Analytics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Partials | |
## optional index: optionally matches trailing slash or index file | |
(/|/index.php)? | |
## query string: matches the end of the pattern or a ? followed by anything. | |
(\?.*)?$ | |
# Pages | |
## Home page | |
^/(index.php)?(\?.*)?$ | |
## Events page | |
^/events(/|/index.php)?(\?.*)?$ | |
## SLOTA landing page | |
^(/programs/st-louis-air|/show/st-louis-on-the-air|/content/st-louis-air|/stlonair)(\?.*)?$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment