try fix filename have [] in FC

This commit is contained in:
qkqpttgf
2021-09-28 11:01:44 +08:00
committed by GitHub
parent bb31dee01d
commit d2fd1f3a05
+1 -1
View File
@@ -37,7 +37,7 @@ function GetPathSetting($event, $context)
$_SERVER['region'] = $context['region'];
$_SERVER['service_name'] = $context['service']['name'];
$_SERVER['function_name'] = $context['function']['name'];
$path = $event['path'];
$path = str_replace('%5D', ']', str_replace('%5B', '[', $event['path']));
$tmp = $event['requestURI'];
if (strpos($tmp, '?')) $tmp = substr($tmp, 0, strpos($tmp, '?'));
if ($path=='/'||$path=='') {