Codeigniter路由
我有这些 URL:
home/danh_muc/15
home/rao_vat/
home/chuyen_muc/15
如何删除 URL 中的“home”?
I have these URLs:
home/danh_muc/15
home/rao_vat/
home/chuyen_muc/15
How do I remove "home" in the URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
“家”是控制器吗?
我认为如果它是控制器,则无法删除...
但如果“home”是某种index.php,你可以尝试这个..
http://codeigniter.com/wiki/mod_rewrite/
Is 'home' a controller??
I think it couldn't be remove if it's a controller...
but if 'home' is some kind of index.php, you can try this..
http://codeigniter.com/wiki/mod_rewrite/
您的 CodeIgniter 根目录很可能位于网站根目录中的 /home 下。只需移动 CodeIgniter 应用程序即可。否则,您使用名为 Home 的控制器,这是正常的。
most likely your CodeIgniter root directory is under /home in your website root. Simply move the CodeIgniter application. Otherwise you using a controller named Home and this is normal.
最好的方法取决于您到底想要发生什么。试试这个:
或者这个:
或者从字面上回答它,这个:
The best way depends on what exactly you want to happen. Try this:
Or this:
Or to answer it literally, this: