我正在尝试使用简单的html DOM获取网站的内容,如下所示:
<?php
include_once('../simple_html_dom.php');
$html = file_get_html('http://www.opaltransfer.com/en');
echo($html);
?>
当我在我的localhost上运行时,一切正常,但是当我尝试在远程服务器上运行它时,我正在
Found
The document has moved here.
为什么呢?我能做些什么让它发挥作用?提前致谢
答案 0 :(得分:1)
您在网址末尾错过了/
。