We recently updated our site from pure php to cakephp 3 and having trouble redirecting urls that have params to a new url.
For example this redirect works fine
$routes->redirect('/webcast.php', '/webcast', ['status' => 302]);
But if there's parameters, it doesn't work
$routes->redirect('/webcast.php?id=100', '/webcast', ['status' => 302]);
Any ideas?
Thanks.