https://odan.github.io/2019/11/05/slim4-tutorial.html
If you liked the tutorial, please click here on the star button: https://github.com/odan/slim4-tutorial
For technical questions create an issue here: https://github.com/odan/slim4-tutorial/issues
If you have Slim framework specific questions use: https://discourse.slimframework.com/
Write your comments / suggestions / feedback here 👇
yes @odan i understand your point as it is looking for the public directory which has index.php, as i am using php internal web server.
coming to another scenario where i have web server that points to
htdocs
and my slim is insidehtdocs/somefolder/slim
i am hitting the url with10.xxx.xxx.x:port/somefolder/slim
the request lands successfully to public/index.php from there it goes to bootstrap.php to container.php and finally lands toroutes.php
where if i do a var_dump($app) it gives me resultset but i am getting 404 error withType: Slim\Exception\HttpNotFoundException
code: 404
Message: Not Found
File: /www/zendphp7/htdocs/somefolder/slim/vendor/slim/slim/Middleware/RoutingMiddleware.php
to make it work if i remove this line
return function(App $app){
fromrouter.php
and again add this two lines inrouter.php
$app = AppFactory::create();
$app->setBasePath('/somefolder/slim');
its working.