Last updated 4 years ago
Routes must be declare inside index.php
First parameter = route
Second parameter = function
Add /about route in index.php as below
index.php
You can require normal php file as below
$router->get( '/home', // home route function(){} // function );
/** * About Page */ $router->get('/about',function(){ echo "Welcome to about page"; });
/** * Require File */ $router->get('/about',function(){ require __DIR__ . '/views/about.php'; });