访问外部网址后重定向,如果我无法访问该外部网址

时间:2017-09-07 10:04:27

标签: php redirect url-redirection

假设我在本地托管了两个文件 page_1.php &的 page_2.php

如果用户访问 page_1.php ,我会尝试将其重定向到 www.example.com ,然后在几秒钟后重定向到 page_2 .PHP

这是我尝试过的。

header('refresh:3; url=http://example.com');
header('location: page2.php');
  

注意:www.example.com不是本地托管的。所以我不能放置标题:location'那里。

1 个答案:

答案 0 :(得分:1)

为什么不使用iframe和jquery加载页面?

HTML:

<iframe id="first-iframe" src="https://www.first-domain.com/"></iframe>

Jquery的:

$("#first-iframe").delay(5000).attr('src', 'https://www.second-domain.com/');

这样您可以根据需要显示任意数量的页面。