Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if($modx->event->name=="OnPageNotFound"){
- $alias = $modx->context->getOption('request_param_alias', 'q');
- if (!isset($_REQUEST[$alias])) {return false;}
- $request = $_REQUEST[$alias];
- $url=strtr($request,array('model/'.$_GET['md'].'/'=>''));
- if (!$section = $modx->findResource($url)) return false;
- $modx->sendForward($section);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement