Level 23
In your routes file add a route that redirects to the default path you want.
Route::get(‘/‘, function() {
return redirect(‘/student’);
});
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
when i hit this ip address 127.0.0.1:8000 then show / address i have not root address route controller that's why i want to redirect others link like 127.0.0.1:8000/student or 127.0.0.1:8000/login page direct how i do that ? thanks in advancea
In your routes file add a route that redirects to the default path you want.
Route::get(‘/‘, function() {
return redirect(‘/student’);
});
Please or to participate in this conversation.