Codeigniter控制器和路由
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeigniter控制器和路由相关的知识,希望对你有一定的参考价值。
我正在尝试使用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;
我可以访问主页,但我无法访问管理页面。有什么帮助吗?
答案
希望对你有帮助 :
确保你已经加载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
另一答案
我认为代码应该是这样的..如果我已经纠正了你的部分错误,希望这对你有用.....
<?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);
}
}
}
?>
以上是关于Codeigniter控制器和路由的主要内容,如果未能解决你的问题,请参考以下文章