Welcome Guest, Not a member yet? Register   Sign In
problem slash at the end of url
#5
Photo 
(This post was last modified: 12-11-2020, 11:19 AM by Halim.)

(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']);

Attached Files Thumbnail(s)
   
Reply


Messages In This Thread
problem slash at the end of url - by Halim - 12-10-2020, 11:42 PM
RE: problem slash at the end of url - by Halim - 12-11-2020, 10:58 AM
RE: problem slash at the end of url - by Halim - 12-11-2020, 11:18 AM
RE: problem slash at the end of url - by Halim - 12-11-2020, 11:42 AM
RE: problem slash at the end of url - by Halim - 12-11-2020, 11:58 AM
RE: problem slash at the end of url - by InsiteFX - 12-11-2020, 12:57 PM
RE: problem slash at the end of url - by demyr - 12-12-2020, 12:43 AM
RE: problem slash at the end of url - by demyr - 12-12-2020, 02:46 AM



Theme © iAndrew 2016 - Forum software by © MyBB