@addison
To add an extension name to a CodeIgniter route, you can modify the config/routes.php
file in your CodeIgniter project.
1
|
$route['your-route'] = 'controller/method'; |
1
|
$route['your-route.extension'] = 'controller/method'; |
Now, when you access the route your-route.extension
, it will point to the specified controller/method in your CodeIgniter project.