На Joomla 1.5 можно было в templates/system/error.php прописать редиректы для ошибок вот так :// no direct accessdefined( '_JEXEC' ) or die( 'Restricted access' );if (($this->error->code) == '403') {header('Location: index.php?option=com_community&view=prof ile&Itemid=161');exit;} if (($this->error->code) == '500') {header('Location: index.php?option=com_community&view=prof ile&Itemid=161');exit;} if (($this->error->code) == '404') {header('Location: index.php?option=com_community&view=prof ile&Itemid=161');exit;} ?>на 1.6.3 такая штука не проходит.Каким образом сделать что если доступ в определенный раздел закрыт незарегестрированным пользователям то автоматически перекидывало на страницу с авторизацией?
|