在此处显示日历,但是当我点击下一个或上一个链接时,它会显示此错误:
找不到对象!在此服务器上找不到请求的URL。引用页面上的链接似乎是错误的或过时的。请通知该页面的作者有关错误的信息。如果您认为这是服务器错误,请与网站管理员联系。错误404
请有人帮助我!
项目名称:ci_series
我将基本网址设为http://localhost/ci_series/'
$config['index_page'] = '';
我使用了cordelginer框架。我的欢迎控制器是默认加载的。
<?php
class Welcome extends CI_Controller {
function index()
{
$this -> display( $year=null, $month=null);
}
//display function
function display($year=null, $month=null)
{
$conf= array(
'start_day'=>'monday',
'show_next_prev' => true,
'next_prev_url' => base_url(). 'display'
);
$this->load->library('calendar',$conf);
echo $this->calendar->generate( $year, $month);
}
}