我在 codeigniter 中有一个默认控制器
class Welcome extends CI_Controller {
public function index()
{
$this->load->view('welcome_message');
}
如你所知,我们可以调用这个函数
sitename/index.php
或者
sitename/
因为我在 .htaccess 中有 url 重写
现在我想用参数传递调用相同的索引函数,比如
sitename/seo-services
其中 seo-services 将参数传递给 index 函数以加载 seo-services 页面。
因为codeigniter的默认语法是
example.com/class/function/ID
我想要这种形式
example.com/class/ID
我想跳过类的默认(索引)函数的函数
我怎样才能做到这一点?
谢谢
正如你所看到的,我正在尝试这个以实现 seo 的目的。