public function handle(Request $request, Closure $next)
{
// Replace 'mydomain' with your actual domain
if ($request->getHost() === 'mydomain.com') {
// Replace 'subdomain' with your actual subdomain
return redirect()->to(str_replace('mydomain.com', 'subdomain.mydomain.com', $request->fullUrl()));
}
return $next($request);
}
protected $routeMiddleware = [
'subdomain.redirect' => \App\Http\Middleware\SubdomainRedirectMiddleware::class,
];
Route::group(['middleware' => 'subdomain.redirect'], function () {
// All your routes go here
});
Please replace 'mydomain' and 'subdomain' with your actual domain and subdomain in SubdomainRedirectMiddleware.php.
1条答案
按热度按时间6gpjuf901#
要在Laravel级别处理这个问题,您可以使用中间件。中间件提供了一种方便的机制来检查和过滤进入应用程序的HTTP请求。
这里有一个例子,你可以如何做到这一点。
首先,通过运行以下命令创建一个新的中间件:
接下来,打开新创建的文件app/Http/Middleware/SubdomainRedirectMiddleware.php,并将重定向逻辑添加到handle方法中:
然后,您需要注册此中间件。打开app/Http/Kernel.php,在routeMiddleware数组中添加以下行:
▽这里有一个参考https://www.w3schools.in/laravel/middleware