This is how I use wget:
wget -m -p -E -k -np https://domain.com
-m, --mirror
Enable recursion/time-stamps, set infinite recursion depth, and retain FTP directory listings
-p, --page-requisites
Get all images/resources needed to display as HTML
-E, --adjust-extension
Save HTML/CSS files with their extensions
-k, --convert-links
Convert links to point to local files
-np, --no-parent
Don’t ascend to the parent directory
1 Like