I need to download a website with css files included. For example wget -r http://docs.djangoproject.com/en/1.3/ to look up it offline. I have tried to make it with wget but I coudn’t (only download *.html). Is there any way to do it with wget?
Inside the downloaded html, “stylesheet” points to the online page not local file .css
<link href="http://www.djangoproject.com/m/css/base.css" rel="stylesheet" type="text/css" media="screen" />
How can I change it in all pages and css files.
Thanks for all,
You need to include a couple more switches, at least:
See the man page for any others you may require…