Wget排除域无效

时间:2015-09-29 13:48:32

标签: wget mirroring

我需要复制我的网站。现在我使用[官方网站] [1]上提供的说明来排除一些网址。

这是wget命令:

/usr/bin/wget --no-host-directories -U Mozilla --recursive
--page-requisites --restrict-file-names=windows --convert-links 
--html-extension --mirror -P /path/to/folder --no-parent -e
--exclude-domains http://www.external-domain.com/ 
robots=off http://my-domain.com

我也试过这段代码:

/usr/bin/wget --no-host-directories -U Mozilla --recursive
--page-requisites --restrict-file-names=windows --convert-links
--html-extension --mirror -P /path/to/folder --no-parent -e
--exclude-domains=http://www.external-domain.com/
robots=off http://my-domain.com

我收到以下错误 - wget: Invalid --execute command --exclude-domains'。那么,我如何排除我不需要复制的域名?

1 个答案:

答案 0 :(得分:1)

对不起,我不知道,选项位置很重要,所以我改变了这个:

/usr/bin/wget --no-host-directories -U Mozilla --recursive 
--page-requisites --restrict-file-names=windows --convert-links 
--exclude-domains www.external-domain.com --html-extension --mirror 
-P /path/to/my/folder --no-parent -e robots=off www.my-domain.com

它开始工作。