Hi,
have done a similar thing with some modification in the config.php:
define('WB_URL', 'http://'.$_SERVER['SERVER_NAME']);
if ($_SERVER['SERVER_NAME'] == 'your-domain.com') {
define ('TEMPLATE_DIR', WB_URL.'/templates/com'); //only needed if you use 2 different templates
if (!isset($page_id)) {
$page_id = 35; //the page_id for the startpage for the com domain
}
} else {
define ('TEMPLATE_DIR', WB_URL.'/templates/de'); //only needed if you use 2 different templates
}
Assuming your-domain.de is the "normal" entry.
All the .de pages resist in /pages/de and the .com pages in /pages/com
Also you have to use 2 menus in the info php
$menu[1] = "de Menu";
$menu[2] = "com Menu";
And you show_menu has to start on root+1
Hope this helps.
Regards Bernd