使用 Httrack 从博客网站下载博客时出错

使用 Httrack 从博客网站下载博客时出错

我正在尝试使用 Httrack 下载我的一个博客。每次尝试时都会收到此错误消息:

**MIRROR ERROR!** 

HTTrack has detected that the current mirror is empty. If it was an update, the previous mirror has been restored. Reason: the first page(s) either could not be found, or a connection problem occured. => Ensure that the website still exist, and/or check your proxy setting! <=

我认为由于此问题,可能无法从 Blogger 下载任何博客。

有人知道如何用这个程序下载博客吗?非常感谢。

答案1

作为 buggy 的替代品httrack,为什么不使用wget呢?

domain="theravingrick.blogspot.com"
wget -e robots=off -r --no-parent --reject "search?*" "http://${domain}"
find "$domain" -type f -exec sed -i "s/http:\/\/${domain}\///g" {} \;

相关内容