Book Image

FuelPHP Application Development Blueprints

By : Sebastien Drouyer
Book Image

FuelPHP Application Development Blueprints

By: Sebastien Drouyer

Overview of this book

Table of Contents (13 chapters)
FuelPHP Application Development Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Routes configuration


You can now manage your project by requesting the URL http://mytodolists.app/project.

Since this is our point of entry, we would like to access this page when requesting the root URL http://mytodolists.app/.

As we saw in Chapter 1, Building Your First FuelPHP Application, you just need to edit the APPPATH/config/routes.php configuration file. Replace '_root_' => 'welcome/index' with '_root_' => 'project/index'.