PHP CodeIgniter - Как установить страницу по умолчанию для корня сайта - PullRequest
0 голосов
/ 19 мая 2018

Я новичок в CodeIgniter, создаю веб-сайт с двумя вложенными каталогами контроллеров backend и frontend.Все мои страницы работают нормально, кроме root.Я сталкиваюсь с трудностью установки страницы по умолчанию, когда в URL не указан путь (только корень веб-сайта).

Я хочу отобразить домашнюю страницу, если после корня сайта нет пути.Я поставил $route['default_controller'] = 'frontend/pages', но это не работает.

Мой config/routes.php выглядит следующим образом:

$route['default_controller'] = 'frontend/pages';

$route['user'] = 'user/index';
$route['user/register']['GET'] = 'frontend/user/index';

$route['user/register']['POST'] = 'frontend/user/register_user';
$route['user'] = 'frontend/user/login_view';
$route['user/login'] = 'frontend/user/login_view';
$route['user/login_user'] = 'frontend/user/login_user';
$route['user/user_profile'] = 'frontend/user/user_profile';
$route['user/user_logout'] = 'frontend/user/user_logout';

$route['admin'] = 'backend/Admin_area/dashboard';
$route['admin/(index|dashboard)'] = 'backend/Admin_area/dashboard';
$route['admin/(:any)/(:any)/(:any)'] = 'backend/$1/$2/$3';
$route['admin/(:any)/(:any)'] = 'backend/$1/$2';
$route['admin/(:any)'] = 'backend/$1';

$route['/^$'] = 'frontend/pages/view/home';
$route['(:any)'] = 'frontend/pages/view/$1';

Когда я посещаю root/, покажи мне 404 error page.

Pages Код контроллера:

<?php
class Pages extends Frontend_Controller {

    function __construct()
    {
        parent::__construct();
    }

    public function index()
    {
        $page = 'home';
            $this->data['pagetitle'] = ucfirst($page); 

            $this->render('pages/'. $page);
    }

        public function view($page = 'home')
    {

            $this->data['pagetitle'] = ucfirst($page); 

            $this->render('pages/'. $page);
    }
}

Ответы [ 5 ]

0 голосов
/ 19 мая 2018

По умолчанию в codeigniter маршрут контроллера по умолчанию может быть только на первом уровне контроллеров.

Все остальные контроллеры могут находиться в подпапке, но только не в контроллере по умолчанию, который вы хотите иметь.

Правильно

application
application > controllers
application > controllers > Pages.php // Your Default Controller

Не

application
application > controllers
application > controllers > frontend > Pages.php

Чтобы иметь возможность иметь подпапки для маршрута default_controller

Как

$route['default_controller'] = 'subfolder/controller/function';

Как использовать подпунктпапка в маршрутном контроллере по умолчанию в CodeIgniter 3

Вам нужно будет создать файл application / core / MY_Router.php

<?php

class MY_Router extends CI_Router {

    protected function _set_default_controller() {

        if (empty($this->default_controller)) {

            show_error('Unable to determine what should be displayed. A default route has not been specified in the routing file.');
        }
        // Is the method being specified?
        if (sscanf($this->default_controller, '%[^/]/%s', $class, $method) !== 2) {
            $method = 'index';
        }

        // This is what I added, checks if the class is a directory
        if( is_dir(APPPATH.'controllers/'.$class) ) {

            // Set the class as the directory

            $this->set_directory($class);

            // $method is the class

            $class = $method;

            // Re check for slash if method has been set

            if (sscanf($method, '%[^/]/%s', $class, $method) !== 2) {
                $method = 'index';
            }
        }

        if ( ! file_exists(APPPATH.'controllers/'.$this->directory.ucfirst($class).'.php')) {

            // This will trigger 404 later

            return;
        }
        $this->set_class($class);
        $this->set_method($method);
        // Assign routed segments, index starting from 1
        $this->uri->rsegments = array(
            1 => $class,
            2 => $method
        );
        log_message('debug', 'No URI present. Default controller set.');
    }
}
0 голосов
/ 19 мая 2018

Попробуйте изменить контроллер на:

 public function index()
    {
        $this->load->view('home');
    }
0 голосов
/ 19 мая 2018

Надеюсь, что это поможет вам:

На CodeIgniter 3 Это не позволяет вам иметь подпапку на $route['default_controller'], вместо этого вам нужно будет создать MY_Router .php файл, как показано ниже.

Вам потребуется создать MY_Router.php в

application > core > MY_Router.php

class MY_Router extends CI_Router {
protected function _set_default_controller() {

    if (empty($this->default_controller)) {

        show_error('Unable to determine what should be displayed. A default route has not been specified in the routing file.');
    }
    // Is the method being specified?
    if (sscanf($this->default_controller, '%[^/]/%s', $class, $method) !== 2) {
        $method = 'index';
    }

    // This is what I added, checks if the class is a directory
    if( is_dir(APPPATH.'controllers/'.$class) ) {

        // Set the class as the directory

        $this->set_directory($class);

        // $method is the class

        $class = $method;

        // Re check for slash if method has been set

        if (sscanf($method, '%[^/]/%s', $class, $method) !== 2) {
            $method = 'index';
        }
    }

    if ( ! file_exists(APPPATH.'controllers/'.$this->directory.ucfirst($class).'.php')) {

        // This will trigger 404 later

        return;
    }
    $this->set_class($class);
    $this->set_method($method);
    // Assign routed segments, index starting from 1
    $this->uri->rsegments = array(
        1 => $class,
        2 => $method
    );
    log_message('debug', 'No URI present. Default controller set.');
}
}

В route.php

$route['default_controller'] = 'frontend/pages';
0 голосов
/ 19 мая 2018

Изменить это

$route['default_controller'] = 'frontend/pages';

Изменить на

$route['default_controller'] = 'frontend/pages';
$route['default_controller'] = "pages";
0 голосов
/ 19 мая 2018

Вы можете переопределить механизм 404 по умолчанию, используя: -

$route['404_override'] = 'your_custom_or_default_page';

И контроллер по умолчанию как: -

$route['default_controller'] = 'your_custom_or_default_page';
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...