79582692

Date: 2025-04-19 18:18:31
Score: 1.5
Natty:
Report link

Add these lines to Config/Routes.php as defined in https://codeigniter4.github.io/CodeIgniter4/incoming/routing.html#setting-routing-rules

$routes->get('/', 'Home::index');
//----------------Add Below codes to Config/Routes.php
$routes->get('/home/about', 'Home::test'); //or
$routes->get('/about', 'Home::test');
$routes->get('/youtube', 'Home::youtube');
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hakan