我使用了file_get_contents函数从url获取内容并将其回显到屏幕。 这是代码。
$data=file_get_contents($_REQUEST['url_name']);
$atIndex = strpos($data,"</head>");
$data = substr_replace($data, '<script type="text/javascript" src="https://tag-test-super-star.c9users.io/server/js/jquery.min.js"></script><script type="text/javascript" src="https://tag-test-super-star.c9users.io/server/js/index.js"></script>', $atIndex, 0);
echo $data;
但是如果我们这样做,那么样式就不会影响到屏幕,因为有些网址会使用本地链接。
例如像<img src="img/img.png">
我知道如果我们想要正确显示图像,我们必须在img / img.png之前添加网址。
但我如何使用php或javascript或其他方式为整个网站做到这一点?