Идея там точно такая же, модексу по большому счету все равно, на субдомен или на домен перебрасывать. Плагин для редиректа на нужный домен используется? Нужен. Посмотрите, инфы на сей счет на самом деле много:
погуглил<?php
/* don't execute if in the Manager */
if ($modx->context->get('key') == 'mgr') {
return;
}
switch (strtolower(MODX_HTTP_HOST)) {
case 'domain2.tld':
// if the http_host is of a specific domain, switch the context
$modx->switchContext('domain2.tld');
break;
case 'domain3.tld':
// if the http_host is of a specific domain, switch the context
$modx->switchContext('domain3.tld');
break;
default:
// by default, don't do anything
break;
}
?>