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.
我有以下代码:
$uri = 'iosapp://test'; header('Location: '.$uri);
(自定义 url 方案)
出于某种原因,PHP (kohana) 没有正确重定向到该 url。
我应该做些什么不同的事情?
尝试使用
$uri = 'iosapp://test'; HTTP::redirect($uri);
http://kohanaframework.org/3.3/guide-api/HTTP#redirect