在 Codeigniter 中为文件夹定义默认控制器
大家好,我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是如何在
routes.php
中指定它的?您是否尝试过:How have you specified it in your
routes.php
? Have you tried with:简单 - 只需添加一个“index()”函数
Simple - just add an "index()" function