我想知道是否可以让 apache 用链接后面的站点的 html 替换我返回给客户端的 html 中的链接。
所以而不是
<html>
<head>
</head>
<body>
<a href="<some link>">Link</a>
</body>
</html>
我想要这样的东西:
<html>
<head>
</head>
<body>
// the html of the page behind the link
</body>
</html>
我不能使用 javascript 或 php 或任何东西,假设我只有 html。
IFrame 也无法解决我的问题。