Skip to content

Instantly share code, notes, and snippets.

@ricealexander
Created October 12, 2020 17:41
Show Gist options
  • Save ricealexander/d3eb8547b3ac40cbef6b506b0e3f81a0 to your computer and use it in GitHub Desktop.
Save ricealexander/d3eb8547b3ac40cbef6b506b0e3f81a0 to your computer and use it in GitHub Desktop.
Regular Expressions for STLPR Google Analytics
# 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