具有较少 URL 段的 CodeIgniter
您可能知道,codeigniter 的 URL 是这样构建的。就我而言,我有:
http://example.com/subfolder/class/function/ID
有没有一种方法可以使用 codeigniter (或 htaccess) 在更短的 url 中创建此 url,如下所示:
http://example.com/ID
亲切的问候,Senne
As you might know, the URL for codeigniter is build like this. In my case, I have:
http://example.com/subfolder/class/function/ID
Is there a way with codeigniter (or htaccess) to create this url in a much shorter url like this:
http://example.com/ID
Kind regards, Senne
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
application/configs/routes.php
文件中,您应该能够添加如下内容:您可以在此处阅读有关自定义路由的更多信息:http://codeigniter.com/user_guide/general/routing.html
In the
application/configs/routes.php
file, you should be able to add something like this:You can read more about custom routing here: http://codeigniter.com/user_guide/general/routing.html
您可以使用 CodeIgniter 中的 Url 路由 来完成此操作。
You can do this by using Url Routing in CodeIgniter.