[讨论]
解决:怎样让导航链接不区分大小写
问题描述: 正常链接为 http://cms.com/Message 怎样访问 http://cms.com/message 时也可以正常访问页面。 环境信息: PHP版本8.1、系统版本 cms laravel9 解决: 1、在app\Http\ 中添加文件 CaseInsensitiveUriValidator.php app\Http\CaseInsensitiveUriValidator.php 文件代码内容: <?php namespace App\Http\Middleware; use Illuminate\Http\Request;use Illuminate\...