获取URL,包括在URL中传递的参数作为参数

时间:2015-04-29 15:23:34

标签: php

在我的网站中,我有一个机制,当你的会话过期我保存当前位置并将你重定向到登录页面登录,所以网址如下

localhost/mytest/admin/login-admin.html?current=localhost/mytest/admin/manage-customer.php?action=update&id_annonceur=2

登录后,我将用户重定向到当前参数中存储的url。 问题是我使用以下代码

if(isset($_GET['current']))
    header('Location: http://'.$_GET['current']);
else
    header('Location: ../admin/dashboard.php');

我获取的网址没有包含在网址

中的参数
http://localhost/mytest/admin/gestion-annonceur.php?action

有没有办法检索包含参数的完整网址?

0 个答案:

没有答案