douliao8318 2015-09-20 14:29
浏览 11
已采纳

Codeigniter:创建索引页面

My folder structure is as following

admin
__master
_______address_book
_______Users
_______Product
_______etc
__operations
_______register_orders
_______payments
_______etc

I have created controllers for address_book,users,products,register_orders, payments etc to reduce the complexity of each controller.

Now, how to handle index page request for www.abc.com/admin ? I have created Admin controller in /controllers directory then other links like www.abc.com/admin/master/address_book will not work.

How to handle both requests? I would also like to know is there any way to handle each index page requests eg:

www.abc.com/admin/
www.abc.com/admin/master/
www.abc.com/admin/operations/
  • 写回答

2条回答 默认 最新

  • doude5860 2015-09-20 14:58
    关注

    To access each request with url like-

    www.abc.com/admin/
    www.abc.com/admin/master/
    www.abc.com/admin/operations/
    

    you have to use codeigniter's routing. And for routing there are a config file under aplication/config folder named routes.php. Add all your routes in this file. Suppose you want to access this url-

    www.abc.com/admin/operations/
    

    then you have to create a new route for this in the route file, like-

    $route['admin/operations']  = 'admin/operations';
    

    where in $route array index you have to mention what will be the url and the value against this index you have to mention the controller's path and also you can mention the controller's function name which will be invoked (for index function there no need for mentioning).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教