- 普通 - 未处理
如果URL_PATHINFO_DEPR不为默认'/'就会引起参数丢失,原因Dispatcher.class.php第104行
$res = preg_replace([email=]'@(\w+)'.$depr.'([^\/]+)@e'[/email], '$var[\'\\1\']="\\2";', implode('/',$paths));
改为
$res = preg_replace([email=]'@(\w+)'.$depr.'([^\/]+)@e'[/email], '$var[\'\\1\']="\\2";', implode($depr,$paths));
如果不是,有其它配置参数进行控制吗?
