If you want to mirror a website to another location you can easily use wget as follows:
1 | wget -r ftp://<user>:<password>@<ftp.FQN>/directory/subdirectory |
this downloads the subdirectory to your current directory.
If you want to change the target directory you can append:
1 | --directory-prefix=/var/www/vhosts/FQN/ |