Como definir index.html para redirecionar a consulta wget para outra página / arquivo?

2

Se meu servidor estiver em example.com , executando

$ wget example.com

só baixará o arquivo index.html . Como posso fazer wget

  • faça o download de outro arquivo em vez de index.html
  • faça o download desse arquivo ao longo do índice, html

Eu tenho todo o redirecionamento que eu poderia encontrar pubkey.asc é o meu arquivo):

  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" />
    

PS: Estou postando aqui em vez de web.stackexchange, pois o mecanismo wget está envolvido.

    
por user123456 21.12.2016 / 00:15

1 resposta

1

<!DOCTYPE html>
<head>
<meta http-equiv="refresh" content="0;URL=pubkey.asc">
</head>
<body>
</body>
</html>

Combinado com wget -r http://example.com

baixa index.html e pubkey.asc

    
por 21.12.2016 / 01:30