Requests组件bug一枚
system\Services/Requests.php
判断网址是否需要绝对化的规则,兼容性可以更好
原判断规则为:
if (strpos($location, '/') === 0) {
此判断仅对跳转目标为 /index.html 有用,必须存在 / 号,如果目标跳的是 index.html ,Requests 则会抛出异常。
修改方案:
if (!preg_match('/^https?:\/\//i', $location)) {
2017-12-31 15:31
2017-12-29 10:53
2017-12-16 08:48