4

我需要将我的页面重定向到另一个页面,但我无法使用该header功能,还有其他方法吗?

我需要做的是这样的:

if (test){
   ---do something---
   redirect
} else {
   return false
}

谢谢

4

4 回答 4

19
if (test){
   ---do something---
   die("<script>location.href = 'http://www.google.com'</script>");
} else {
   return false;
}
于 2013-08-13T10:41:03.673 回答
5

元重定向

    if (test){
       //do something
       echo '<META HTTP-EQUIV="Refresh" Content="0; URL=yourpage.php">';//This causes the browser to open the new page after 0 seconds, i.e immediately.
    }  else {
       return false;
    } 
于 2013-08-13T10:35:47.537 回答
1
if (test){
  echo "<script type='text/javascript'>
window.onload = function () { top.location.href = '" . $url . "/page.php#contact'; };
</script>";
} else {
   return false
}
于 2013-08-13T11:47:34.497 回答
1
if (test){
   ---do something---
  $URL="http://yourwebsite.com/";
  echo '<META HTTP-EQUIV="refresh" content="0;URL=' . $URL . '">';
  echo "<script type='text/javascript'>document.location.href='{$URL}';</script>";
} else {
   return false;
}

如果您想知道为什么我同时使用Meta 标签和 JavaScript 来重定向,那么答案很简单。

如果浏览器中禁用了 JavaScript,则元标记将重定向页面。

于 2016-04-09T10:56:42.313 回答