Level 102
It's here in the docs https://laravel.com/docs/11.x/routing#route-group-subdomain-routing
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello i have sub domain created in cpanel, i want to point the sub domain to a particular route in web.php without the subdoamin loading other route
Route::controller('SiteController')->group(function () {
Route::get('connect','connectPages')
->withoutMiddleware('maintenance')
->name('connect.pages');
});
It's here in the docs https://laravel.com/docs/11.x/routing#route-group-subdomain-routing
Please or to participate in this conversation.