How do you archive an entire website for offline viewing?

后端 未结 9 1214
渐次进展
渐次进展 2021-01-29 21:02

We actually have burned static/archived copies of our asp.net websites for customers many times. We have used WebZip until now but we have had endless problems with crashes, do

相关标签:
9条回答
  • 2021-01-29 21:44

    The Wayback Machine Downloader by hartator is simple and fast.

    Install via Ruby, then run with the desired domain and optional timestamp from the Internet Archive.

    sudo gem install wayback_machine_downloader
    mkdir example
    cd example
    wayback_machine_downloader http://example.com --timestamp 19700101000000
    
    0 讨论(0)
  • 2021-01-29 21:50

    For OS X users, I've found the sitesucker application found here works well without configuring anything but how deep it follows links.

    0 讨论(0)
  • 2021-01-29 21:53

    wget -r -k

    ... and investigate the rest of the options. I hope you've followed these guidelines:http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html so all your resources are safe with GET requests.

    0 讨论(0)
提交回复
热议问题