在 Codeigniter 中为文件夹定义默认控制器

发布于 2024-11-06 03:08:30 字数 216 浏览 0 评论 0原文

大家好,我将 Codeigniter 控制器设置在名为员工的文件夹中。问题是,如果仅在 URL 中键入文件夹,我似乎不知道指定默认控制器的最佳方法。例如,我希望能够输入:

www.mysite.com/employees

并将其默认为人事控制器,而不必输入:

www.mysite.com/employees/personnel

有什么想法吗?谢谢。

Hey everyone, I have my Codeigniter controllers set up in a folder called employees. The issue is that I don't seem to know the best way to specify the default controller if only the folder is typed in the URL. For instance, I would like to be able to type in:

www.mysite.com/employees

and have it default to the personnel controller, instead of having to type in:

www.mysite.com/employees/personnel

Any ideas? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゃ人海孤独症 2024-11-13 03:08:30

您是如何在 routes.php 中指定它的?您是否尝试过:

$route['default_controller'] = "personnel";

How have you specified it in your routes.php? Have you tried with:

$route['default_controller'] = "personnel";
谁对谁错谁最难过 2024-11-13 03:08:30

简单 - 只需添加一个“index()”函数

class Employees extends CI_Controller
{
    public function index()
    {
        redirect ('employees/personnel');
    }

    public function personnel()
    {
        // your code here
    }
 }

Simple - just add an "index()" function

class Employees extends CI_Controller
{
    public function index()
    {
        redirect ('employees/personnel');
    }

    public function personnel()
    {
        // your code here
    }
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文