How can I set up 2 fallback pages?
Is there a way to set up 2 fall back pages per a multi-domain web site in marketo?
To my understanding we can only set up one fall back page per 1 marketo instance.
Is the a way to set up 2 fallback pages?
Is there a way to set up 2 fall back pages per a multi-domain web site in marketo?
To my understanding we can only set up one fall back page per 1 marketo instance.
Is the a way to set up 2 fallback pages?
Sure. Well, actually, you still use one fallback page as configured within the Marketo UI, but you can have it redirect transparently based on the domain the user entered.
Go into your fallback page's Landing Page Actions >> Edit Page Meta Tags.
Set Robots = 'noindex,nofollow'
In Custom HEAD HTML enter the following:
<SCRIPT>
document.location.replace('//www'+document.location.hostname.substring(document.location.hostname.indexOf('.')));
</SCRIPT>
<NOSCRIPT>
<META http-equiv="refresh" content="0;URL='http://www.example.com/'" />
</NOSCRIPT>
The code above assumes you want pages.example.com/non-existent-landing-page to fall back to http://www.example.com, but it can be tweaked to whatever you want.
In the <NOSCRIPT> section, change 'www.example.com' to whatever you want your super-default domain to be: the tiny fraction of users with JS disabled will still go to this domain, but everybody else will be dynamically redirected.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.