Using automated tools to clone websites?

HooToo

Newbie
Joined
Nov 15, 2024
Messages
14
Reaction score
5
Hi, has anyone come across any software/tools that can clone a simple site? What about using WGET to get the code then adding that to WP?
 
If you can use wget to scrape the content of the domain, then it's still very much useful. There are GUI tools like htttrack, that crawls all links and saves them offline. Cyotek WebCopy is another tool. But htttrack is opensource while cyotek is not, so there's that

Code:
https://github.com/xroche/httrack
https://www.cyotek.com/cyotek-webcopy
 
Great info - so I could theoretically use httrack to add the data to my server and built it from the server......thinking cpanel....
 
Hi, has anyone come across any software/tools that can clone a simple site? What about using WGET to get the code then adding that to WP?
https://www.scrapebox.com/article-scraper-plugin
 
Great info - so I could theoretically use httrack to add the data to my server and built it from the server......thinking cpanel....

yes, you can do that. you'd better test it in localhost first tho for broken links and stuff.
 
If you use WGET or HTTrack, you'll get the static HTML version of the site, but integrating it into WordPress requires extra steps. You'll need to convert the static HTML into a WordPress theme or manually replicate the design using a page builder like Elementor for full WordPress compatibility.
 
Can httrack clone the entire content and interface of a wordpress website?
 
Yes, tools like HTTrack or WGET can clone sites, and you can adapt the code for WordPress, but it may require custom development.
 
Back
Top