Quote:
Originally Posted by Henrycat
Does anyone know any setting in webzip to do relative linking from the root were the site is saved? or other program that does it?
|
I've never used WebZip, but am using a program with a similar feature,
wget. It downloads files from the website relatively and recursively (so must be careful not to overload the web server by requesting too much files).
For instance, you could retrieve the whole
Wired Magazine Issue 14.05 by running:
Code:
wget -r -l 0 -np -k -E http://www.wired.com/wired/archive/14.05/
This downloads all the files under
http://www.wired.com/wired/archive/14.05/, and converts it to relative links. Although this sample doesn't retrieve some thumbnail images, you could do so too. There are more informations and usages in the
GNU Wget 1.10 Mannual.
Hope this helps.