| I am trying to mirror www.example.com. A lot of content is hosted on many
subdomains such as content.example.com and images.example.com. I am using the
following command, and see the following output.
$ httrack -w www.example.com --near --robots=0
/
|--www.example.com
| |--index.html
| |--etc
|--content.example.com
| |--etc
|--images.example.com
| |--images
| | |--image_00.jpg
| | |--image_00.jpg
| | |--etc
|--hts-log.txt
|--index.html
If I serve the resulting directory, my home page becomes
<http://www.example.com/www.example.com/index.html> and content in subdomains is
referenced with ../
I would like to flatten the directory structure so the mirrored page is more
like the original and content hosted on subdomains is not referenced with a
../ | |