How do you use WGET to mirror a site 1 level deep, recovering JS, CSS resources including CSS images?
Fresh3 days ago
Mar 15, 202626580 viewsConfidence Score0%
0%
Problem
Pretend I wanted a simple page copy to be downloaded to my HD for permanent keeping. I'm not looking for a deep recursive get, just a single page, but also any resources loaded by that page to be also downloaded. Example: https://www.tumblr.com/ Expect: The index.html Any loaded images Any loaded J…
Unverified for your environment
Select your OS to check compatibility.
1 Fix
Canonical Fix
Unverified Fix
New Fix – Awaiting Verification
Fix for: How do you use WGET to mirror a site 1 level deep, recovering JS, CSS resources including CSS images?
Low Risk
wget -p -k http://ExampleSite.com The -p will get you all the required elements to view the site correctly (css, images, etc). The -k will change all links (to include those for CSS & images) to allow you to view the page offline as it appeared onli…
Awaiting Verification
Be the first to verify this fix
Sign in to verify this fix