Redirect visitors to Landing Page if UTM parameter is missing | Community
Skip to main content
November 6, 2015
Question

Redirect visitors to Landing Page if UTM parameter is missing

  • November 6, 2015
  • 1 reply
  • 708 views

Hi,

Is there a way to redirect visitors to a marketo landing page if they are missing the UTM strings that I appended to the landing page url?

So for example:

info-staging.mycompany.com/leadsubmit.html  -> Redirect

http://info-staging.mycompany.com/leadsubmit.html?utm_medium=PaidSearch -> Redirect

Thanks,

Agnes

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

SanfordWhiteman
Level 10
November 6, 2015

<HEAD>

     <SCRIPT>

          document.location.search || ( document.location ='/my/default/page.html?utm_medium=default_redirect');

     </SCRIPT>

...

</HEAD>

Or something along those lines.