我是编码点火器新手我有问题
我使用我的os x lion,并且我使用.htaccess
我可以直接调用localhost/site_folder/它工作起来像charm,但是我的控制器中有第二个函数,但是我不能直接调用像localhost/site_folder/function2这样的函数
这是我的控制器
class My_site extends CI_Controller {
function __construct() {
parent::__construct();
}
function index() {
--some script--
}
function function2() {
--some script--
}
}
上面说找不到网址,为什么?
谢谢您
最佳答案
默认路由方案为example.com/class/function/id/
Doc
如果site_folder
是您安装了codeigniter的文件夹,则指向function2
的url将是,
http://localhost/site_folder/my_site/function2
关于php - 无法在 Controller codeigniter中调用第二个函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9956561/