我在wampserver上使用codeigniter,对模型控制器视图非常陌生,并且我试图很好地理解它的工作原理。 目前,我正在尝试做一个控制器的基本创建: 在/application/controllers/pages.php中,我只是这样做的:
<?php
class Pages extends CI_Controller{
public function one(){
echo 'hello world';
}
}
?>
是的,这是非常基本的,但是当我尝试使用chrome:http://localhost/test/pages/one/
时,我陷入了404错误我在互联网上看过几本与我做的事情相同的教程,但是他们在他们的网页中看到了“ hello world”。
我发现这可能是因为我没有在URL中键入index.php,但我修改了config.php和route.php使其不再必须键入它:
config.php:
$config['base_url'] = 'http://localhost/test';
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
routes.php:
$route['default_controller'] = 'pages/view';
$route['pages'] = 'pages/$1';
$route['(:any)'] = 'pages/view/$1';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
最让我困扰的是,当我使用此codeigniter的示例时,它运行良好,并且没有出现404错误:
class Pages extends CI_Controller{
public function view($page = 'home')
{
if ( ! file_exists(APPPATH.'views/pages/'.$page.'.php'))
{
// Whoops, we don't have a page for that!
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);
}
}
如果我尝试创建另一个函数,它将被完全忽略。 我想我的路由文件有问题,或者Codeigniter的安装有问题,但是在这种情况下,我希望在重新安装所有组件之前先询问一下...
有人对我的问题有答案吗?非常感谢。
答案 0 :(得分:1)
更改
的路线$route['default_controller'] = 'pages/view';
$route['pages'] = 'pages/$1';
$route['(:any)'] = 'pages/view/$1';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
到
$route['default_controller'] = 'pages/one';
$route['pages'] = 'pages/$1';
$route['(:any)'] = 'pages/one/$1';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;