//D:/website/google.com/www/Laravel/app/routes.php
Route::group(array('prefix'=>'admin'),function(){
Route::get('login','admin\HomeController@login');
});
当网址是 http://localhost/ADMIN/LOGIN/ 报错无法访问
如何大小写不区分
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
强制对来路url全部转为小写,在主入口文件 server.php 里面可以操作。
@kankana 牛逼,服!
extend Router class 重写这个method应该就可以了
protected function addRoute($methods, $uri, $action)
{
return $this->routes->add($this->createRoute($methods, strtolower($uri), $action));
}