如果我的服务器处于example.com
运行状态
$ wget example.com
只会下载文件。我index.html
该如何做wget
- 下载另一个文件而不是 index.html
- 沿着index,html下载此文件
我有我能找到的所有重定向pubkey.asc
是我的文件):
<meta http-equiv="Refresh" content="seconds; url=pubkey.asc ">
<script language="javascript"> window.location.href = "http://example.com"
<link rel="canonical" href="pubkey.asc"/>
<script> document.location.href="pubkey.asc";</script>
<script>window.location.href='pubkey.asc';</script>
<meta http-equiv="refresh" content="0; url=pubkey.asc" />
wget
附言:由于涉及机制,我在这里发帖而不是在 web.stackexchange 上发帖。
答案1
<!DOCTYPE html>
<head>
<meta http-equiv="refresh" content="0;URL=pubkey.asc">
</head>
<body>
</body>
</html>
结合
wget -r http://example.com
下载 index.html 和 pubkey.asc