Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CodeIgniter 4 Only default route / is accessible, no other route is working if i define in my Routes.php. I am using ubuntu

My .htaccess file inside app/.htaccess and project directory is here. Both are same. i am using the same .htaccess file which is present inside public directory in both app and project directoyr

Routes.php is here

<?php 
namespace Config;

// Create a new instance of our RouteCollection class.
$routes = Services::routes();

// Load the system's routing file first, so that the app and ENVIRONMENT
// can override as needed.
if (file_exists(SYSTEMPATH . 'Config/Routes.php'))
{
    require SYSTEMPATH . 'Config/Routes.php';
}

/**
 * --------------------------------------------------------------------
 * Router Setup
 * --------------------------------------------------------------------
 */
$routes->setDefaultNamespace('App\Controllers');
$routes->setDefaultController('Home');
$routes->setDefaultMethod('index');
$routes->setTranslateURIDashes(false);
$routes->set404Override();
$routes->setAutoRoute(true);

/**
 * --------------------------------------------------------------------
 * Route Definitions
 * --------------------------------------------------------------------
 */

// We get a performance increase by specifying the default
// route since we don't have to scan directories.
$routes->get('/test', 'Home::test');
$routes->get('/test', 'Home::test');
/**
 * --------------------------------------------------------------------
 * Additional Routing
 * --------------------------------------------------------------------
 *
 * There will often be times that you need additional routing and you
 * need it to be able to override any defaults in this file. Environment
 * based routes is one such time. require() additional route files here
 * to make that happen.
 *
 * You will have access to the $routes object within that file without
 * needing to reload it.
 */
if (file_exists(APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php'))
{
    require APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php';
}

On / it working fine. But on /test it give me error.

The requested URL was not found on this server. how can i fix this issue. My index.php is working fine.

like image 619
Aqeel Ahmad Avatar asked Jan 01 '26 07:01

Aqeel Ahmad


1 Answers

Try this

$routes->get('/test', 'App\Controllers\Home::test');

But for this to work, you need to have a Controller named Home inside Controllers folder and also a method named test inside the controller.

like image 81
bogdanmduca Avatar answered Jan 03 '26 23:01

bogdanmduca



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!