Currently, I have a Wordpress-powered site running on davidandsuzi.com. I'd like to convert this site to essentially be a bunch of static files (none of the site currently needs to be dynamic) hosted on AWS.
From researching online, my big-picture approach was this:
Clone the current Wordpress content to a subdomain, so dev.davidandsuzi.com and davidandsuzi.com are basically mirrors
Use a program called HTtrack to recursively crawl a site and download everything as static HTML files, then upload these to S3.
Somehow start forwarding davidandsuzi.com/* requests to CloudFront
When I add new content, I'll use dev.davidandsuzi.com, re-run HTTrack (should only really change the index and add a new page for the post), and re-upload new files to S3
Thoughts?