mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 12:42:48 +08:00
自动请求缓存不区分大小写
This commit is contained in:
@@ -1542,7 +1542,7 @@ class Request
|
||||
$key = call_user_func_array($key, [$this]);
|
||||
} elseif (true === $key) {
|
||||
foreach ($except as $rule) {
|
||||
if (0 === strpos($this->url(), $rule)) {
|
||||
if (0 === stripos($this->url(), $rule)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user