Codeigniter控制器和路由

时间:2018-05-15 12:49:06

标签: php codeigniter codeigniter-3

我正在尝试使用codeigniter构建一个非常简单的Web应用程序,现在我正在尝试为网站和管理区域构建静态页面。

但是任何路由都在提供

  

404页

除了家庭控制器。

我有2个包含网页的主文件夹,一个用于用户

application/views/pages/home.php

另一个是管理员。

application/views/admin/dashboard.php

我可以访问主页,但无法访问管理页面。

这是Pages控制器:

<?php
class Pages extends CI_Controller {
  public function view($page = 'home')
  {
    $this->load->helper('html');
          if ( ! file_exists(APPPATH.'views/pages/'.$page.'.php'))
          {
             show_404();
          }

          $data['title'] = ucfirst($page); // Capitalize the first letter
          $this->load->view('templates/header', $data);
          $this->load->view('pages/'.$page, $data);
          $this->load->view('templates/footer', $data);
  }
}
?>

这是管理员控制器

<?php
class Admin extends CI_Controller {
  public function view($admin = 'dashboard')
  {
          if ( ! file_exists(APPPATH.'views/admin/'.$admin.'.php'))
          {
                show_404();
          }
          $data['title'] = ucfirst($page);/* should be there*/
          $this->load->view('admin/'.$admin, $data);
  }
}
?>

这是路线

$route['admin'] = 'admin/dashboard';
$route['default_controller'] = 'pages/view';
$route['(:any)'] = 'pages/view/$1';
$route['translate_uri_dashes'] = FALSE;

我可以访问主页,但无法访问管理页面。有什么帮助吗?

2 个答案:

答案 0 :(得分:1)

希望这会对您有所帮助:

确保您已加载url助手和.htaccess并在config.php中设置base_url

您的 config.php

$config['base_url'] = 'http://localhost/project_folder/';
$config['index_page'] = '';

autoload.php

$autoload['helper'] = array('url');

.htaccess文件应该是这样的:

Options +FollowSymlinks -Indexes
RewriteEngine on
DirectoryIndex index.php
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]

.htaccess文件放在project_folder

替换

$route['admin'] = 'admin/dashboard';

用这个:

$route['admin'] = 'admin/view';

route.php应该是这样的:

$route['admin'] = 'admin/view';
$route['default_controller'] = 'pages/view';
$route['(:any)'] = 'pages/view/$1';
$route['translate_uri_dashes'] = FALSE;

像这样访问网址:

http://localhost/project_folder/
http://localhost/project_folder/admin

更多信息:https://www.codeigniter.com/user_guide/tutorial/static_pages.html

答案 1 :(得分:0)

我认为代码应该是这样的...如果我已经纠正了它,那么你的错误是希望这对你有用......

<?php
class Admin extends CI_Controller {
  public function view($admin = 'dashboard')
  {
          if ( ! file_exists(APPPATH.'views/admin/'.$admin.'.php'))
          {
                show_404();
          }else{
           $data['title'] = ucfirst($page);/* should be there*/
          $this->load->view('admin/'.$admin, $data);
          }

  }
}
?>