【发布时间】:2016-06-27 21:32:12
【问题描述】:
我的控制器`
class index extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper('html');
$this->load->helper('url');
$this->load->helper('form');
}
public function index()
{
$this->load->view('login');
}
` public function home()
{
$this->load->view('header');
$this->load->view('index');
$this->load->view('footer');
}
}
这个控制器中函数home的url是这个 http://localhost:88/mlmm/index.php/index/home
我希望这个网址是 http://localhost:88/mlmm/home
【问题讨论】: