fix: fix: FC base_path

This commit is contained in:
qkqpttgf 2020-09-22 20:06:14 +08:00 committed by GitHub
parent 936764d7b6
commit ded802f448
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -38,10 +38,8 @@ function GetPathSetting($event, $context)
$_SERVER['region'] = $context['region'];
$_SERVER['service_name'] = $context['service']['name'];
$_SERVER['function_name'] = $context['function']['name'];
$_SERVER['base_path'] = $event['requestURI'];
$path = $event['path'];
//$path = spurlencode($path, '/');
$path = $event['path'];
$_SERVER['base_path'] = substr($event['requestURI'], 0, -strlen($path)+1);
if (substr($path,-1)=='/') $path=substr($path,0,-1);
$_SERVER['is_guestup_path'] = is_guestup_path($path);