2024年09月10日 建站教程
php开发中有哪些关于url链接的基本操作,下面web建站小编给大家简单介绍一下!
$currentUrl = 'http' . (isset($_SERVER['HTTPS']) ? 's' : '') . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
https://lmcjl.com?query=vue&page=10 //当前页面url链接 $query = $_GET['query'] ?? ''; $page = $_GET['page'] ?? 1;
header('Location: https://lmcjl.com/vuejs/'); exit;
本文链接:http://so.lmcjl.com/news/12701/