【发布时间】:2015-03-27 05:26:34
【问题描述】:
我想在 CodeIgniter 中使用路由我无法获得我想通过测试控制器这是代码 我想要这样的 localhost/code/test 的 url 但我找不到对象
routes.php
$route['test'] = "test/blog";
test.php controller
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Test extends CI_Controller {
/**
* Index Page for this controller.
*
* Maps to the following URL
* http://example.com/index.php/welcome
* - or -
* http://example.com/index.php/welcome/index
* - or -
* Since this controller is set as the default controller in
* config/routes.php, it's displayed at http://example.com/
*
* So any other public methods not prefixed with an underscore will
* map to /index.php/welcome/<method_name>
* @see http://codeigniter.com/user_guide/general/urls.html
*/
public function index()
{
$this->load->view('welcome_message');
}
public function blog()
{
echo "hi";
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */
【问题讨论】:
标签: codeigniter