Skip to content

Commit

Permalink
docs: update routing config file name
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Dec 15, 2023
1 parent 9c3f1f7 commit 6ceb0fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions user_guide_src/source/incoming/controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ To call the above controller your URI will look something like this::
Each of your sub-directories may contain a default controller which will be
called if the URL contains *only* the sub-directory. Simply put a controller
in there that matches the name of your default controller as specified in
your **app/Config/Routes.php** file.
your **app/Config/Routing.php** file.

CodeIgniter also permits you to map your URIs using its :ref:`Defined Route Routing <defined-route-routing>`..

Expand Down Expand Up @@ -547,7 +547,7 @@ Defining a Default Controller (Legacy)

Let's try it with the ``Helloworld`` controller.

To specify a default controller open your **app/Config/Routes.php**
To specify a default controller open your **app/Config/Routing.php**
file and set this property::

public string $defaultController = 'Helloworld';
Expand Down Expand Up @@ -595,7 +595,7 @@ To call the above controller your URI will look something like this::
Each of your sub-directories may contain a default controller which will be
called if the URL contains *only* the sub-directory. Simply put a controller
in there that matches the name of your default controller as specified in
your **app/Config/Routes.php** file.
your **app/Config/Routing.php** file.

CodeIgniter also permits you to map your URIs using its :ref:`Defined Route Routing <defined-route-routing>`..

Expand Down

0 comments on commit 6ceb0fb

Please sign in to comment.