var target = document.location.hostname;
var limoandme_pattern = /(www\.)?thelimoandme\.com/;

if (limoandme_pattern.test(target)) {
  location.replace("/thelimoandme.shtml");
}

