url有参数时,如何用wget下载整个页面?

How to download the entire page with wget when the url has parameters?

我想下载整个页面及其所有对象,包括图像、js、css 等。但是,url 可能包含参数,例如。

www.youtube.com/results?search_query=star+wars

我已经尝试过类似问题中建议的选项:

wget -p -k "www.youtube.com/results?search_query=star+wars"
wget -p -k ‐‐post-data "search_query=star+wars" "https://www.youtube.com/results"

但其中 none 有效。有人可以帮我吗?非常感谢!

找到答案:

wget -E -H -k -K -p -e robots=off $URL

注意:URL 必须用 '' 引号。

REF: https://superuser.com/questions/55040/save-a-single-web-page-with-background-images-with-wget