我想通过PHP更改URL。
类似于 JavaScript 中的
window.location.href = "http://www.something.com"
。
我想要同样的东西,但是是 PHP 的。我该怎么办?
您可以使用 header() 命令:
<?php
header("Location: http://www.example.com/");
?>
<?php
header('Location: http://www.example.com/');
?>
确保输出的行上方没有没有任何内容,否则会失败。
您可以将 ob_start 与 header function 一起使用 为了防止像这样的重定向错误:
<?php
ob_start(); // Starts Output Buffering
header(/*Your redirection's location*/); // Redirects user to given location.
?>
你可以:
echo '<script> window.location.href = "http://www.something.com"</script>';