根据url参数重定向所有访问者

时间:2018-11-17 16:51:40

标签: php wordpress redirect dns

我想根据url中的参数重定向用户吗?

https://example.com/redirect_handler?param=foo&url=http//currentuserwebsite.com

https://example.com/redirect_handler?param=foo&url= 因此,用户将首先被重定向到exmple.com,并根据url参数将用户重定向到url参数(用户admin)。

有可能吗?

1 个答案:

答案 0 :(得分:1)

以下是您应尝试的示例:

所以我们说链接是 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
?>