如何设置 index.html 以将 wget 查询重定向到其他页面/文件?

如何设置 index.html 以将 wget 查询重定向到其他页面/文件?

如果我的服务器处于example.com运行状态

$ wget example.com

只会下载文件。我index.html该如何做wget

  • 下载另一个文件而不是 index.html
  • 沿着index,html下载此文件

我有我能找到的所有重定向pubkey.asc是我的文件):

  1. <meta http-equiv="Refresh" content="seconds; url=pubkey.asc "> 
    
  2.  <script language="javascript">
    window.location.href = "http://example.com"
    

  3. <link rel="canonical" href="pubkey.asc"/>
    
  4. <script> document.location.href="pubkey.asc";</script>
    
  5. <script>window.location.href='pubkey.asc';</script>

  6. <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

相关内容