通过PHP更改URL

时间:2010-05-04 09:57:19

标签: php url

我想通过PHP更改URL。

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

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

4 个答案:

答案 0 :(得分:19)

您可以使用 header 功能:

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

答案 1 :(得分:3)

您可以使用header()命令:

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

答案 2 :(得分:2)

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

确保输出的线路上方,否则会失败。

答案 3 :(得分:0)

  

您可以使用 ob_start 以及标题 功能   为了防止重定向错误,如下所示:

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