我正在使用 PHP 创建一个代理服务器,我想知道是否可以将链接(相对和绝对)转换为绝对 URL,然后更改链接,以便它们转到我网站上的某个位置。很难解释,但这基本上是我想要的
<html>
<body>
<a href='http://www.google.com'>This is a link</a><br><br>
<a href='/index.php'>This is another</a><br>
<form action='/act.php'>
<input type='submit'>
</form>
我会使用哪个
file_get_contents("http://www.thiswebsite.com")
预期的输出将是
<html>
<body>
<a href='proxy.php?url=http://www.google.com'>This is a link</a><br><br>
<a href='proxy.php?url=http://www.thiswebsite.com/index.php'>This is another</a><br>
<form action='proxy.php?url=http://www.thiswebsite.com/act.php'>
<input type='submit'>
</form>
谢谢