简体   繁体   中英

Codeigniter: Index page creation

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/

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).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM