通过PHP更改URL

问题描述 投票:0回答:5

我想通过PHP更改URL。

类似于 JavaScript 中的

window.location.href = "http://www.something.com"

我想要同样的东西,但是是 PHP 的。我该怎么办?

php url
5个回答
26
投票

您可以使用

header
函数来实现:

header("LOCATION: http://www.something.com");

5
投票

您可以使用 header() 命令:

<?php
  header("Location: http://www.example.com/");
?>

3
投票
<?php
header('Location: http://www.example.com/');
?>

确保输出的行上方没有没有任何内容,否则会失败。


-1
投票

您可以将 ob_startheader function 一起使用 为了防止像这样的重定向错误:

<?php
   ob_start(); // Starts Output Buffering 
   header(/*Your redirection's location*/); // Redirects user to given location.
?>

-1
投票

你可以:

echo '<script> window.location.href = "http://www.something.com"</script>';
© www.soinside.com 2019 - 2024. All rights reserved.