diff --git a/library/think/Url.php b/library/think/Url.php index 3001daba..37ceef1e 100644 --- a/library/think/Url.php +++ b/library/think/Url.php @@ -135,7 +135,7 @@ class Url if (!empty($vars)) { // 添加参数 if (Config::get('url_common_param')) { - $vars = urldecode(http_build_query($vars)); + $vars = http_build_query($vars); $url .= $suffix . '?' . $vars . $anchor; } else { $paramType = Config::get('url_param_type');