使用 Laravel 中间件将大写 URL 重定向到小写
发布于 作者 Jason Beggs
上周,我需要将所有包含大写字母的请求重定向到其小写等效项,以进行 SEO 优化。
例如
从 | 到 |
---|---|
/location/Atlanta | /location/atlanta |
/docs/Laravel-Middleware | /docs/laravel-middleware |
同时,解决方案不应该改变任何查询参数
从 | 到 |
---|---|
/locations/United-States?search=Georgia | /location/united-states?search=Georgia |
事实证明,我们只需要在 Laravel 中间件中添加几行代码就可以实现!首先,我们从请求中获取路径,并检查它是否与小写形式相同。如果不是,我们可以使用 url()->query()
方法将查询字符串追加到路径的小写版本,并永久重定向到小写路径。
<?php namespace App\Http\Middleware; use Closure;use Illuminate\Http\Request;use Symfony\Component\HttpFoundation\Response; class RedirectUppercase{ /** * Handle an incoming request. * * @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next */ public function handle(Request $request, Closure $next): Response { $path = $request->path(); if (($lower = strtolower($path)) !== $path) { $url = url()->query($lower, $request->query()); return redirect($url, 301); } return $next($request); }}
为了在 Laravel 11 应用中注册中间件,我在 bootstrap/app.php
文件中将其追加到 web
中间件组。
<?php return Application::configure(basePath: dirname(__DIR__)) ->withRouting( // ... ) ->withMiddleware(function (Middleware $middleware) { $middleware->appendToGroup('web', \App\Http\Middleware\RedirectUppercase::class); });
注意:您可能希望将此中间件从使用签名 URL 或其他区分大小写的用例的路由中排除。
我相信 Nginx 或 Apache 也可能有解决方案,但对我来说,这无疑是最简单的解决方案,而且它适用于应用的所有环境。我不必记住在新服务器上进行任何更改。
TALL 堆栈(Tailwind CSS、Alpine.js、Laravel 和 Livewire)顾问,也是 designtotailwind.com 的所有者。