Skip to content

Instantly share code, notes, and snippets.

<?php
switch ($modx->event->name) {
case 'OnWebPagePrerender':
$modx->resource->_output = str_replace('"index/', '"', $modx->resource->_output);
break;
case 'OnPageNotFound':
$uri = explode('?', $_SERVER['REQUEST_URI']);
if ($res = $modx->findResource('index' . $uri[0])) {
$modx->sendForward($res);
}