php查询字符串标题

时间:2014-04-13 12:08:59

标签: php redirect

您好header('Location: http://www.example2.com/');时遇到查询字符串时遇到问题。

好的,我会让问题易于理解:

现在我有一个域名http://example1.com/?url=url我想当有人想访问example1.com时将它重定向到example2.com但是如果他输入example1.com/?url=url什么都不会发生那么我怎么能请这样做,并提前感谢

2 个答案:

答案 0 :(得分:1)

你用什么来重定向?从您的帖子的第一行我假设,您通过PHP header函数重定向用户。因此,请检查PHP是否存在查询字符串:

<?php
if (empty($_SERVER["QUERY_STRING"]))
{
    header("Location:  http://www.example2.com/");
}
?>

答案 1 :(得分:0)

我假设你在域example1.com的根目录中有index.php。你可以使用它;

<?php

if (empty($_GET["url"])) {
    header("Location:  http://www.example2.com/");
}