没有www的PHP标头重定向

时间:2016-09-08 01:05:42

标签: php html

header("Location: https:/index.php");

将页面重定向到index.php页面,但使用https://website.com重定向,我需要保留www.website.com

如何使用相对路径将www保留在重定向中?

2 个答案:

答案 0 :(得分:0)

您可以使用$ _SERVER ['HTTP_HOST']来获取服务器的主机名,以便:

$hostname = $_SERVER['HTTP_HOST'] ; 
header("Location: {$hostname}".);

答案 1 :(得分:-1)

您是否尝试过...('位置:http://www.website.com')?