Убираем дубли главной modx revo
Создаём плагин DOUBLES в событиях ставим OnWebPagePrerender.
<?php switch ($modx->event->name) { case 'OnHandleRequest': if (strpos($_SERVER['REQUEST_URI'],'index.php') !== false && $modx->context->get('key') != 'mgr') { if (!empty($_GET['id'])) { $id = (int)$_GET['id']; if (!$modx->getCount('modResource', array('id' => $id, 'published' => 1, 'deleted' => 0))) { $modx->sendErrorPage(); } } else { $id = $modx->getOption('site_start', null, 1); } $modx->sendRedirect($modx->makeUrl($id),array('responseCode' => 'HTTP/1.1 301 Moved Permanently')); } break; }