Hi since I'm using apache 2.4 server, all the routes defined in the routes.php file are not getting redirected to the index.php file , It was showing the error of "404 not found".
But I have fixed it using the .htaccess file in the public folder with below details
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?path=$1 [NC,L,QSA]