Вот пример того, что вы должны попробовать:
Так скажем, ссылка
https://example.com/redirect_handler?param=foo&url=http//currentuserwebsite.com
Что вам нужно сделать, это следующее:
В верхней части php-файла напишите следующий код:
<?php
if(isset($_GET['url'])){ //check if the URL parameter is there
$url = $_GET['url']; //declare $url as the parm
Header('Location:'.$url); //note if you are using WordPress use wp_redirect Function
} //end if
?>