Copying a website

I think about $125 and you can get any site copied.. I pefer to outsource this work since I'm not that technical with css and all that stuff
 
On Linux machines, wget can be used to recursively pull down a webpage as well as all the images and dependencies referenced. As noted, this works only for static websites and will not retrieve a website's server-side dynamic code.
 
On Linux machines, wget can be used to recursively pull down a webpage as well as all the images and dependencies referenced. As noted, this works only for static websites and will not retrieve a website's server-side dynamic code.

Yeah, works a treat.

Code:
wget -r -p -e robots=off -U mozilla http://www.domainname.com/

The above command rips the website, ignores the robots.txt file and uses a firefox user agent.
 
i have also been wondering about this for some time now nice thread
 
Back
Top