wget递归下载网站资源
Posted sui84
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wget递归下载网站资源相关的知识,希望对你有一定的参考价值。
wget -r -p -np -k http://archive.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/
在下载https站点时:
ERROR: certificate common name `*.c.ssl.fastly.net‘ doesn‘t match requested host name `bootstrap.pypa.io‘.
To connect to bootstrap.pypa.io insecurely, use `--no-check-certificate‘.
无法建立 SSL 连接。
wget --no-check-certificate https://bootstrap.pypa.io/ez_setup.py
因为wget在使用HTTPS协议时,默认会去验证网站的证书,而这个证书验证经常会失败。加上"--no-check-certificate"选项,就能排除掉这个错误。
以上是关于wget递归下载网站资源的主要内容,如果未能解决你的问题,请参考以下文章