|
看手册里标准方法是:
域名/控制其名/方法名/参数
请教怎么实现隐藏方法名?
让参数默认传到 Index 方法中呢?
例如:http://www.xx.com/Article/1 这样的
PHP复制代码
class article extends CI_Controller {
public function __construct (){
parent ::__construct ();
$this -> load -> model('Home_model');
}
public function index ($id)
{
// 系统信息
$data['SysConfig'] = $this -> Home_model -> getSysConfig();
exit('大家好,我是内容页');
}
}
复制代码
|
|