Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

towhid's avatar

my local server address after php artisan serve 127.0.0.1:8000

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

0 likes
3 replies
bearcodi's avatar
bearcodi
Best Answer
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
towhid's avatar

yes you are right - its simply but i was not recognized ... thank you

Please or to participate in this conversation.