Forum Moderators: open
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
// ***
// Redirect to 2nd when incoming from search engine with
// keywords related to that site
// ***
if (document.referrer.indexOf("google.com")!= -1 &&
(document.referrer.indexOf("keyword2")!= -1 ¦¦ document.referrer.indexOf("keyword3")!= -1)) {
window.location.replace("http://www.2ndwebsite.com");
}
// End -->
</script>
Would this type of conditional redirect cause google to get upset? Basically the first site is trying to offer up the most pertinent info to the user, not a spam attempt.