(12-11-2020, 11:05 AM)sammyskills Wrote: Okay.
Can you share what you have in your .htaccess file?
Sure,
By the way, I moved the index.php and htaccess from public folder to the root
This is my htaccess and Routes files (I attached my
htaccess)
My Routes:
/**
* Auth routes
*/
$routes->match(['get', 'post'], 'login', 'Auth\LoginController', ['filter' => 'noauth']);
$routes->match(['get', 'post'], 'password/forgot', 'Auth\PasswordController::forgot', ['filter' => 'noauth']);
$routes->match(['get', 'post'], 'register', 'Auth\RegisterController', ['filter' => 'noauth']);
$routes->get('logout', 'Auth\LogoutController::index');
/**
* App routes
*/
$routes->get('/', 'HomeController::index', ['filter' => 'auth']);
$routes->get('/home', 'HomeController::index', ['filter' => 'auth']);
$routes->get('/about', 'AboutController::index', ['filter' => 'auth']);