Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要覆盖 CodeIgniter 中某些控制器的配置文件中的 uri_protocol。我需要将其更改为“PATH_INFO”,因为我使用的是 Oauth 2.0,授权码是通过查询字符串返回的。
提前致谢!
通过将行添加到配置文件中,我得到了查询字符串,
$_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO']; $config['uri_protocol'] = "PATH_INFO";