wget 能转换本地 html 文档中的链接吗?

wget 能转换本地 html 文档中的链接吗?

我知道 wget 可以获取远程页面及其依赖项并重写 html,以便图像src属性引用新下载的图像。

我正在尝试转换引用互联网上图片的本地 html 文件。我正在使用

wget --mirror --page-requisites --convert-links \
     --directory-prefix=foo \
     --force-html \
     --input-file=my_file.html

所有引用的图像都下载到适当的位置,foo/src属性my_file.html并没有改变。

答案1

尝试这个:

wget --recursive --page-requisites --convert-links --span-hosts http://localhost/some.html

相关内容