在我的网站中,我有一个机制,当你的会话过期我保存当前位置并将你重定向到登录页面登录,所以网址如下
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
有没有办法检索包含参数的完整网址?