下载网站

下载网站

我想下载这个位于深处的网页:example.com/a/b/c/d我遇到的问题是它wget --recursive --page-requisites example.com/a/b/c/d不下载 css 或 js 文件。它只下载一个 html 文件。

答案1

根据本页:

使用 wget 下载整个网站

 wget \
     --recursive \
     --no-clobber \
     --page-requisites \
     --html-extension \
     --convert-links \
     --restrict-file-names=windows \
     --domains website.org \
     --no-parent \
         www.website.org/tutorials/html/

相关内容