如何隐藏URL路径,但仍然从重定向PHP GET

时间:2017-10-24 14:06:53

标签: php

Instagram会返回如下网址:http://example.com/instagram/?code=something

我不想在地址栏中显示?code=something,但我仍希望获得code=的价值

如何在PHP中完成?

目前,我像这样使用

if(isset($_GET['code'])){

}

感谢您的支持。

1 个答案:

答案 0 :(得分:0)

这不仅仅是一个想法:

session_start();
if(isset($_GET['code'])){
$_SESSION['code']=$_GET['code'];
header('Location:http://example.com/instagram/');
}