| Hi,
I am trying to make a static archive of my website. Most images are displayed
as background-images defined in a css file with relative paths.
Example :
.rule {
background-image:url(buttons/button.png);
}
I used this command to mirror the website :
/destination/path/ <http://website.com> -W -O HTTrack/IVC -P
username:pw@proxy:port -%v --robots=0 -%h -n --keep-alive --user-agent
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)"
The problem is the image urls in the css file that is created are changed to
absolute links to my online website, and the images are NOT downloaded. That
means the static version would still need the online version to work...
Example :
.rule {
background-image:url(http://website.com/images/buttons/button.png);
}
What option do I need to use to get HTTrack to download the images linked by
the CSS ?THANKS ! | |