I have the following code:
$uri = 'iosapp://test';
header('Location: '.$uri);
(a custom url scheme)
for some reason, PHP (kohana) is not redirecting to that url properly.
What should I be doing differently?
I have the following code:
$uri = 'iosapp://test';
header('Location: '.$uri);
(a custom url scheme)
for some reason, PHP (kohana) is not redirecting to that url properly.
What should I be doing differently?