|
http://codeigniter.org.cn/forums/thread-7415-1-1.html
这个我已经在本地搭建好了 我有些基础的问题
在视图中 创建的菜单的地址都是
http://localhost/jctpw/qingchunmeinv
http://localhost/jctpw/meinvzipai
……
这里最后的qingchunmeinv或meinvzipai是什么?
.htaccess已经把index.php去掉了
里面前台的控制器只有三个 home.php category.php 和 post.php
default_controller 是home
这个qingchunmeinv之类的既不是一个控制器 也不是某控制器中的函数 控制器中也没有接受参数的函数
但是它却被category中的index操作
PHP复制代码
function index () {
$pageindex=intval($this->uri->segment(2));
$cateslug=$this->uri->segment(1,'');
$cate = $this->Category_m->get_byslug($cateslug);
$this->data['cate']=$cate;
if($cate!='') {
$this->data['cateid']=$cate->category_id;
}else {
$this->data['cateid']=0;
}
……
}
复制代码
这是怎么实现的?在他后面的post中也是同样的
单个文章的链接 都是 http://localhost/jctpw/pictures/23 之类的
但是又刚好可以被post控制器中的另一个view()函数操作
这个怎么确定位置的?
求解 |
|