+ Redirect to index page

If not configured in .htaccess or nginx configuration
This commit is contained in:
Visman 2018-10-23 19:33:02 +07:00
parent 1b9c1ba635
commit 4e339956be
3 changed files with 7 additions and 3 deletions

View file

@ -59,7 +59,9 @@ class Routing
// просмотр разрешен
if ('1' == $user->g_read_board) {
// главная
$r->add('GET', '/', 'Index:view', 'Index');
$r->add('GET', '/', 'Index:view', 'Index');
$r->add('GET', '/index.php', 'Redirect:toIndex');
$r->add('GET', '/index.html', 'Redirect:toIndex');
// правила
if ('1' == $config->o_rules && (! $user->isGuest || '1' == $config->o_regs_allow)) {
$r->add('GET', '/rules', 'Rules:view', 'Rules');

View file

@ -85,7 +85,9 @@ class Auth extends Page
/**
* Подготавливает массив данных для формы
*
* @param array $args
* @param string $username
* @param mixed $save
* @param string $redirect
*
* @return array
*/

View file

@ -13,7 +13,7 @@ class Redirect extends Page
*/
public function toIndex()
{
return $this->page('Index')->message('Redirecting to index');
return $this->page('Index'); //->message('Redirecting to index');
}
/**