Well … every one.
I have some one qustion about route function of Slim Framework
What is Best way about ‘/topic’ route for default route set up ‘/’ ?
I tried
$app->get(’/’, function (Request $request, Response $response) {
return $response->withRedirect(’/topic’);"
});
but it’s remain like tail http://example.com/topic
How Do I any solve by ‘what’ function looks like for clean “http://example.com/” ??