I need to archive complete pages including any linked images etc. on my linux server. Looking for the best solution. Is there a way to save all assets and then relink them all t
wget
can do that, for example:
wget -r http://example.com/
This will mirror the whole example.com site.
Some interesting options are:
-Dexample.com
: do not follow links of other domains
--html-extension
: renames pages with text/html content-type to .html
Manual: http://www.gnu.org/software/wget/manual/