require_once连接到其他网站

时间:2011-08-12 07:48:45

标签: php require-once

我试图让我的访问者访问我的网站时自动连接到其他网站

我确实把这个

<?php require_once("http://webtoconnect.com");  ?>

但是我觉得这段代码不行,只是给我一个像这样的错误

Warning: require_once() [function.require-once]: URL file-access is disabled in the server configuration in /home/yoursn0w/public_html/tv/index.php on line 1

所以我想知道如何让我的访问者留在同一页面,但自动连接一次到我想要的网站?

2 个答案:

答案 0 :(得分:2)

我不确定你自动连接到其他网站的意思,但如果你的目标是在php代码中包含一个远程页面,你的配置应该有指令:

allow_url_include = On

在你的php.ini中(从PHP 5.2.0开始提供。请注意,由于安全原因,指令默认设置为关闭)。 通过在非安全环境(通常是互联网)中使用此指令,您将面临主要安全性风险,请注意这一点。

如果您的目标只是向访问者显示一个远程网站,您只需使用这样的iframe:

<iframe src="http://google.fr" height="250" width="350"></iframe> 

答案 1 :(得分:1)

也许你只需要这个:

<?php file_get_contents('http://webtoconnect.com'); ?>

我不确定你真正需要什么:D