This probably belongs under Feature Request, but let's suppose you have 2 sites with nearly identical content and you just need to make minor changes to some of the pages, including the home page. How would you display a different Front Page depending on the URL, and assuming this is a single Drupal install and single database.

Comments

Phillip Mc’s picture

Priority: Normal » Minor
dublin drupaller’s picture

you could use the $base_url variable. e.g.

   if ($base_url = "www.example.com") {
     print "howaya!";
     }
  else {
    print "hola!";
  }
dublin drupaller’s picture

Status: Active » Closed (fixed)