仅重定向到index.html一次

时间:2013-04-16 20:23:18

标签: php wordpress redirect

我是非常新的php,我正在编写一个脚本,将用户访问的url(myurl.com)重定向到myurl.com/index.html(使用Wordpress&添加临时登录页面),从那里,您将能够访问不相关的链接,然后可以选择继续访问myurl.com并像平常一样访问Wordpress网站。到目前为止,这就是我所拥有的。

isset($_GET['home'])?$home=1:header("Location:http://myurl.com/index.html");

但当然,在继续进行重定向后,当你在myurl.com上时仍然会重定向。任何帮助/建议都会很棒!

1 个答案:

答案 0 :(得分:1)

您正在检查home但未设置home因此循环。

您可以使用网址请求传递home变量 - 如果这不适合您的情况,请告诉我们:

if (!isset($_GET['home'])) {
    header("Location: http://myurl.com/index.html?home=1");
} else {
    // Home is already set dont redirect
}