header("Location: https:/index.php");
将页面重定向到index.php
页面,但使用https://website.com
重定向,我需要保留www.website.com
。
如何使用相对路径将www保留在重定向中?
答案 0 :(得分:0)
您可以使用$ _SERVER ['HTTP_HOST']来获取服务器的主机名,以便:
$hostname = $_SERVER['HTTP_HOST'] ;
header("Location: {$hostname}".);
答案 1 :(得分:-1)
您是否尝试过...('位置:http://www.website.com')?