当 url 是 localhost/school/portfolio/contact.php 它工作正常,但是当我使用获取参数 index.php?page=contact 它重定向到 index.php
我使用的代码
$url = "http". ((!empty($_SERVER['HTTPS'])) ? "s" : "") . "://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
header('Location: '.$url."?sent=yes");
我要补充什么?