重定向到某个页面,然后返回到脚本

时间:2014-09-22 05:40:58

标签: php redirect

可以以某种方式设法使用标题重定向到某个页面,并在一段时间后回到脚本并反复重定向到另一个页面?!

我在我的电脑上使用它作为localhost我从文本文件中读取网址并且我需要逐个重定向到它们,这就是为什么我需要在重定向后自动返回脚本

3 个答案:

答案 0 :(得分:0)

您可以通过在两个页面上执行此操作来创建链接到两个页面的循环:

sleep(5); //for 5 seconds
header("location: anotherphpfile.php");

答案 1 :(得分:0)

您可以使用iframe。

<iframe src="http://www.w3schools.com"></iframe>

http://www.w3schools.com/tags/tag_iframe.asp

答案 2 :(得分:0)

进行测试只需这样做:

1 - 创建一个页面并将其重命名为 p1.php

  <?php
      //This is p1.php
      header("location:p1.php");
   ?>

2 - 创建另一个页面并将其重命名为 p2.php

<?php
    //This is p2.php
    header("location:p1.php");
?>

3 - 现在运行 p1.php

这是不同浏览器中的结果:

SAFARI

Chrome

Internet Explorer

FireFox

如果您要获取URL然后从该页面获取一些信息,请使用此功能:

file_get_contents ,然后从该页面获取信息,这就是Google和其他搜索引擎所做的事情。